That doesn't look right in FF either. That thing where the menu items change height when you click them makes my head hurt. Also, the rounded corners have a white background leaking in around them in Firefox. (Sorry
)
When I look at the relevant HTML:
Code:
<div id="nav">
<ul id="mainnav">
<li><a href="http://www.netbuilders.org/forums.php">Main</a></li>
<li><a href="send.php">Submit Coupon</a></li>
<li><a href="faq.php">FAQ</a></li>
<li id="features" class="active"><a href="contact.php">Contact</a></li>
<li id="hits" class="right">135 Defunct | 693 Active | 828 proxies | 59717 hits</li>
</ul>
I see it calling five CSS tags:
- nav
- mainnav
- features
- active
- hits
"features" and "hits" are not mentioned anywhere in master.css.
At first glance, I would be tempted to change this:
Code:
#mainnav .active a { padding:4px 20px; background:url(../img/layout/mainnav-triangle.gif) no-repeat 50% 100%; }
To this:
Code:
#mainnav .active a { padding:0px 20px 9px; background:url(../img/layout/mainnav-triangle.gif) no-repeat 50% 100%; }
Bookmarks