First of all, if you remove the linked stylesheet, the nav renders in IE. Or if you remove the on page stylesheet, the nav renders. This means that it is a combination of the styles in the linked stylesheet and the on page stylesheet that is causing the problem. I found that if I made the padding here:
Code:
.Header-Nav2 ul li a{
padding-left : 4px;
padding-right : 4px;
color : #CCCCCC;
text-decoration : none;
padding-top: 8px;
padding-bottom: 8px;
}
4px, as shown, instead of 5px, that also made the nav render in IE. It was a little off though.
If I left it at 5px though, and added an inline style here:
Code:
<li><a href="/index.php" style="padding-right:0;">Fundraising</a>
all seemed well.
Bookmarks