Ah yes, happens in Chrome too.
Instead of this:
Code:
#navbar #holder ul ul {
position: absolute;
top: 53px;
visibility: hidden;
list-style: none;
margin: 0;
padding: 0;
border-bottom: 1px black solid;
overflow: visible;
}
try this:
Code:
#navbar #holder ul ul {
position: absolute;
top: 51px;
visibility: hidden;
list-style: none;
margin: 0;
padding: 0;
border-bottom: 1px black solid;
overflow: visible;
}
If you want to keep the appearance of the gap between the top link and the drop list, you could add this line in red:
Code:
#navbar #holder ul ul {
position: absolute;
top: 51px;
visibility: hidden;
list-style: none;
margin: 0;
padding: 0;
border-bottom: 1px black solid;
overflow: visible;
border-top: 2px solid black;
}
Bookmarks