the drop down menu is suppose to slide back up
Yes it is acting buggy, if you drag your cursor down the "y" in "Polysonmogrpahy" you can see the sub list trying to slide back up.
This may have something to do with you on applying the sub UL styles on hover. The hover should just be controlling the hide and show effects, not presenting the initial rules.
Code:
/* Make submenu not appear until hover is initiated */
.sub{margin-left: -9999em;}
/* This is how the submenu <ul> will be displayed */
#nav li:hover ul{
display:block;
position:absolute;
background-color:#c01515;
margin:0;
}
Bookmarks