|
This one turned out to be real easy to fix.
On your <li> in your nav, you are triggering IE6's doubled-float margin bug. This happens when you use float right/left and add a margin going in the same direction - in your case, a float:right with a right margin. To fix this, you need to add display: inline for the <li> items in your nav and everything will snap into place.
You should do this 'fix' using conditional comments to call a separate css file just for IE6 and all it need to contain is the css rules to make IE behave.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|