Hello,
My navigation is set up in a list. I’ve floated the whole container div and each li within so they should sit next to each other in a straight horizontal row.
But of course there’s a problem in IE7. Instead of being in a straight row the navigation looks like a set of steps, each item is slightly lower than the previous.
Any body know how to fix this? I’ve tried changing the margin-left that separates each link but doesn’t work.
Thanks
#nav {
width: 490px;
float: left;
padding-left: 70px;
padding-top: 20px;
height:100px;
}
#nav li {
list-style: none;
}
#nav a:link, #nav a:visited {
text-decoration: none;
color: #405866; /* blue */
font-size: 90%;
display: block;
float: left;
height: 65px;
margin-left:45px;
}