Change:
Code:
#subnav li a, a:link, a:visited {
font-size: 11px;
font-weight: normal;
height: 16px;
background: transparent;
}
to:
Code:
#subnav li a, a:link, a:visited {
font-size: 11px;
font-weight: normal;
height: auto;
line-height:155%;
background: transparent;
}
You may want to add a line break tag here as well:
Code:
<div id="products" style="display: none">
<ul id="subnav" style="font-size:10px; line-height: normal">
<li><br>
<a href="products/keyboard.php">Keyboard</a></li>
<li><a href="products/devices.php">Devices</a></li>
<li><a href="products/accessories.php">Accessories & Networking/Cables/Routers</a></li>
<li><a href="products/monitors.php">Monitors</a></li>
<li><a href="products/computers.php">Computers</a></li>
<li><a href="products/memory.php">Memory</a></li>
<li><a href="products/storage.php">Hard Drives</a></li>
</ul>
</div>
By the way, this selector:
Code:
#subnav li a, a:link, a:visited {
takes in all links and all visited links on the page. I think you mean for it to be:
Code:
#subnav li a, #subnav li
a:link, #subnav li
a:visited {
Bookmarks