Just doesn't support resizing that I can see. I mean you can set top and bottom padding and/or height here:
Code:
.droplinebar ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
font: bold 13px Arial;
background: #242c54 url(bluedefault.gif) center center repeat-x; /*default background of menu bar*/
}
Either of which would increase the menu's height. You would also probably want to add a top margin equal to about half the actual added height here:
Code:
/* Sub level menus*/
.droplinebar ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
background: #303c76; /*sub menu background color */
visibility: hidden;
}
But this increases this menu's annoying tendency to get into loops if the cursor is placed in certain spots. This tendency alone would be enough for me to avoid this menu, even at its default height. I'd find another menu.
Bookmarks