Change in the reeextreme.net/droplinebar.css file :
Code:
/* Sub level menu links style */
.droplinebar ul li ul li a{
font: normal 13px Verdana;
padding: 6px;
padding-right: 8px;
margin: 0;
border-bottom: 1px solid navy;
}
to:
Code:
/* Sub level menu links style */
.droplinebar ul li ul li a{
font: normal 13px Verdana;
padding: 6px 8px 10px 6px;
margin: 0;
}
The real problem was:
Code:
border-bottom: 1px solid navy;
I added some extra bottom padding to compensate and then some to make it look balanced (added 4px in all to the bottom padding to make up for the 1px blue bottom border and add balance to the look). And consolidated that with the existing pdding into the shorthand padding property (top, right, bottom, left).
Bookmarks