Quote Originally Posted by jettrue View Post
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.
I tried and it did not work. I need it to work on top/bottom margins.

I even tried it with *margin-top: ...in #divdropMenu.
Kim