Hi,
You have a "double margin bug" going on in IE6. You have floated the "#nav li a" left with a left margin. It is causing the list items to drop down to a new line. Did you notice that the last couple of links were not visible?
Code:
#nav li a,
#nav li a:link,
#nav li a:visited {
text-decoration: none;
height: 38px;
display: block;
margin: 18px 0 0 20px;
padding: 0;
font: bold 13px/38px Helvetica, Arial, sans-serif;
color: #000;
text-shadow: #FFF 0 2px 0;
float: left;
display:inline;/*fix IE6 double margin bug*/
}
Also when you set up an override for IE6 it needs to come AFTER the original selector in the cascade.
Code:
#nav {
overflow: hidden;
list-style: none;
margin: 0 0 0 12px;
}
* html #nav { /*IE6*/
height: 1%;
overflow: visible;
}
Bookmarks