On our site 1TM.com we have the text “ORDER NOW!” on our new CSS top navigation bar, we would like this text 1 pixel down. How do we do it?
Also we created a Fix CSS DIV social network bar at the bottom the page but it does not work in IE, is there a fix for this or is there a way to hide this DIV social network bar in IE?
It won’t work in IE because position:fixed isn’t supported in IE5 which is basically what you are forcing IE browsers to behave like as you don’t have a proper doctype as explained before.
You could use expressions or javascript to accomplish it but I wouldn’t recommend it.
I would just leave it a the bottom where it is as its causing no harm.
If you want to hide it then just use an IE conditional comment and set the element to display:none.
No it doesn’t the only change is that the text will be moved downwards by 1px. It will not move the red background at all. I tested locally and on your live example using firebug and it works fine.
You’ve also made the hover the same as the existing style so nothing will change (although it may cancel out any cascading hover effect that may be in place) - is that what you wanted?