The height from here is cascading down on to all list items;
Code:
.drop_menu LI {
float: left;
background-color:#fff;
height:40px;
margin-top:-6px;
}
So you would need to override is on nested list items like this (put below the declaration above);
Code:
.drop_menu li li { height:25px }
This is also causing problems for the drop-downs - they don't stay open when you move from the parent menu item;
Code:
.drop_menu UL {
list-style-type: none;
position: absolute;
left: -999px;
z-index: 1000;
top: -999px;
margin-top:19px;
margin-left:14px;
padding:0;
}
Change it to margin-top:14px so that the sub menu stays open.
Bookmarks