wolfcry911
-
[Solved]Does the location of media queries affect the website?
@CrocoDillon, I don't think that's a good test case - the compression is looking for patterns and you've provided 1000 duplicated patterns.
-
Pseudo-element-using hover state messed up
@dheeraj, try this: http://codepen.io/wolfcry911/pen/kwlsf @Excavator, the lines overlap because of the line-height: normal, which is up to the user agent to set (usually around 1.2 (without a unit it becomes a multiplier)), so in this case is arou…
-
active input css styling
try using the input:focus pseudo class selector
-
Fluid layout with fixed column on right
remove the float from the header and the #wrapper
-
A little help with selectors
LOL - thanks tanner, you made my day! And just for the record (for those that care), I never claim to know everything about anything ;)
-
Opinions on CSS Frameworks
I completely, but respectfully, disagree with you tanner.
-
A little help with selectors
The order doesn't matter #column-left .comment { } (or p.comment) has a higher specificity than #column-left p { } and will win out over the general level p
-
Bullets and Numbered Lists outside of div class=entry in Wordpress
can we see the code (html and css) in question? you can of course target ul and li globally, so there must be something else going on - perhaps a more specific rule overriding this one.
-
Menu hover states
you don't need a parent selector. you need to transfer the hover state from the anchor to the li - that's what you're still hovering over when you go down to the children
-
List extend further than contain element
it's because of the negative margin on the li. I'd change them from display: inline-block to float: left and remove the margin. you should also clear the border from the last anchor
-
Help with CSS Menu States
It's as I stated, once a filter is used, it can't be overwritten. So with the standard button styling coming first, the id class descendant selector couldn't overrule the standard button background. With the descendant selector first…
-
Help with CSS Menu States
It's not the doctype - no new elements are used. It's the filter properties. The problem is that it appears the filter on .button can't be overruled later with another filter (someone please correct me if I'm wrong).
-
Css not working in All IE versions
which IE? earlier versions won't accept :hover on anything but anchors
-
Vertical align image sprites horizontally in footer
You could make the anchor display: inline-block instead of block and use vertical-align: middle. A couple of notes: 1) you're using sprites, but to the bare minimum. I would, at the very least, combine the three footer anchor sprites into one.…
-
Help with CSS Menu States
I appreciate the offer, but it's truly not necessary. Let's just make it a virtual beer ;) I'll take a look at the menu buttons in IE...
-
Help with CSS Menu States
your html is malformed - the doctype is inside the body
-
Help with CSS Menu States
@cwork, you're quite right - I missed that. Here's an article on different ways to accomplish dynamic ids with php.
-
Help with CSS Menu States
As Paulie mentioned, there are a few ways to do this. You're using a server side scripting language (PHP) so that's one way - you could use PHP to add a class to the menu item based on url. Paulie's method works well too, so I'l…
-
Background element full width within restricted element
I'd remove the position: relative from the wrapper .testmain and position .testsub relative to the body. You can remove the width and use left: 0; and right: 0;
-
background and css problem
The clear: both is not for the parent to contain the children floats. The clear: both is for an element after the floats causing the parent to envelope that element as well as the floats. If you're adverse to using clearfix (you shouldn't …
-
Background element full width within restricted element
that assumes the browser width is 980... he stated entire width of browser window
-
Background element full width within restricted element
you could absolutely position the child to be wider than parent.
-
Header Feedback
number 3, I agree with Doc in keeping the borders the same length. I also like 2 and 3 far more than 1 - the whitespace in the former is very refreshing, while the title in 1 is overpowering
-
Centre a logo in the middle of a Menu (4 menu items) and keep it responsive?
I added a media query to a previous pen I had made http://codepen.io/wolfcry911/pen/HyLdg
-
Need help with styling semantic markup
This is two year old post...
-
Gallery Image Align Problems
add vertical-align: top; to the li