See how in my original file, I have two width's for div#dropMenu li, and the second one starts with a *? That asterisk one is for IE only:
Code:
div#dropMenu li {
position:relative;
list-style:none;
margin:0;
float:left;
line-height:1em;
width:16.667%;
*width:16.649%;
}
So you need to add *width:7.5;
to your div #dropMenu li. Or something like that, basically IE needs a slightly smaller percentage.
Bookmarks