Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS IE7 problem Re: IE7 problem

#73064
Rob MacKay
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;
}

#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" :)