In the following lines (from superfish):
ul.sf-navbar .current ul ul {
top: -999em;
}
Does top: -999em
have a special meaning? Why is the top set to a value that is not visible in the browser?
In the following lines (from superfish):
ul.sf-navbar .current ul ul {
top: -999em;
}
Does top: -999em
have a special meaning? Why is the top set to a value that is not visible in the browser?
That would be so the subnavigation is "hidden" until it's parent is hovered over, then it will be shown.
It's purpose is solely to keep any second-tier and higher menus from appearing automatically when the first-tier menu is displayed.
I presume this is a drop-down menu that is set beyond the visible bounds using top: -999em;
so that it can be changed via javascript/css to appear.