Home › Forums › CSS › IE7 problem › Re: IE7 problem
March 27, 2010 at 5:17 am
#73064
Participant
It’s because you are using so much padding and margin to position an element.
You also have too many divs there for the menu. Try this:
html:
CSS:
Code:
ul#navmenu {
list-style-image:none;
list-style-type:none;
margin-left:180px;
padding-top:56px;
position:relative;
top:55px;
left:166px;
}
list-style-image:none;
list-style-type:none;
margin-left:180px;
padding-top:56px;
position:relative;
top:55px;
left:166px;
}
#navmenu li {
display:inline-block;
width:99px;
margin-right:15px;
text-align:center;
padding:0;
margin:0;
.float:left;
}
Oh and you spell "design" with a "g" :)