wolfcry911
-
CSS Only Nav - Sub nav not working in IE9 Why?
remove the z-index from .navigation.navbar
-
Nested Divs and CSS
It wasn't my example, it was just a fork of iDev. If you had shown your image to begin with we could have saved some time... http://codepen.io/wolfcry911/pen/yIGou
-
Nested Divs and CSS
Only one shows because they're being stacked on one another with the absolute positioning. A simple fix is to position a container and use spans within the container to style the different text. http://jsfiddle.net/BpGQp/
-
Fixed Menu: Moving the Content Down
set top: 0; on the #menu_container
-
Floating div falls in FF but not chrome/ie
my mistake, I meant form.cart (not class). It has a fixed width of 245px. Perhaps you have a different font in use...
-
Floating div falls in FF but not chrome/ie
I bet that you have FF zoomed in one level, making the text just a bit too big to fit in the form. The way you have it laid out is too rigid and will fail (as you're seeing). I would remove the width from form.class; and make all three elements…
-
div with css visibility not showing on mobile device
Jarolin, you may want to visit the specs from time to time. 'visible' is not a valid value for the display property. Visibility:visible and hidden are perfectly valid however.
-
Nivoslider wrong positioned in firefox
add clear: left; to .nivoslider or add overflow: hidden; to #navigation
-
CSS Can you help me find the bug?
the about us page has an additional ruleset for #main that contains a float: left;
-
CSS Can you help me find the bug?
There is a float left on the text on the main. Would that do it? Yes, #main needs to float in order to have the sidebar float next to it, unless you put the sidebar before #main in the html
-
Help needed please
the div#logo element has a child anchor that is extending down into the nav area. I'd look into fixing that anchor (or placing it where you want). A quick and dirty fix would be to add overflow: hidden; to #header. edit// just looked into it f…
-
Why is setting min-height causing elements to drop down?
add vertical-align: top to #sidebar #catalogue nav a { }
-
Vertically center table contents
td { vertical-align: middle; }
-
How do I do this with CSS?
there currently is no easy way. Here's a trick that Chris used: http://css-tricks.com/float-center/
-
100% height of child when height of parent is not set?
I think you need to rephrase the question. Unless a child is position: absolute or a float, the parent will encompass the child and therefore the child will be 100% of it's parent's height. I'm guessing you mean 100% of the viewport?
-
Border Adds Padding At Bottom of Images
It seems strange to have .row2 inside of .row1 - its seems stranger to name them rows seeing that they're two columns in one row. The absolute positioning is going to wreak havoc if you try to add any more content. Here's a pen I created …
-
Does the order of this matter?
the attribute order does not matter in html. note that you have an error in the first example (an extra 'a' before the href).
-
Border Adds Padding At Bottom of Images
its bad practice to have so much repetition for just a single margin. Your html looks to be malformed as well. And you have extraneous div elements. It could be as simple as this: or you really don't need the divs (or the figures, but…
-
Border Adds Padding At Bottom of Images
the image is inline by default, you need to target the image and change it to block, or vertical-align: bottom; .imgrow1 img { display: block; } and why two different classes with the same exact styling?
-
Border Adds Padding At Bottom of Images
I'll take a stab, but in the future it would be beneficial to supply at least some code if not a link to a pen or the page in question. I'm guessing you're putting the border on the image's container. The space below the image i…
-
Alternatives to Dreamweaver, Photoshop
http://blogs.adobe.com/fireworks/2013/05/the-future-of-adobe-fireworks.html Sad news indeed!
-
Identical CSS. Different Results (Borders within a Grid System)
.rightborder is listed twice in the css. The second one has the same declarations as .paddingmargin, but the first puts a 1px border on it. So there is a difference.
-
Outsite container div
Is this certain part content or design imagery? What have you tried? Do you have a mockup?
-
Wrapper Background
you need to give the body and html a height of 100%. Their default heights are auto, so the #wrapper's 100% height is 100% of the body which is only long enough to contain the children - in this case, nothing. you haven't correctly closed…
-
One-line Justified Text Design
perhaps this would work: http://fittextjs.com/
-
Dynamic centering of text
http://codepen.io/wolfcry911/pen/ECGFq
-
Full Width Background Color
you need to contain the child floats. add overflow: hidden; to .fullWidthSectionBG