In the following link:
Whenever user visits, in IE or FF, the menu first is shown expanded for a few seconds and then collapsed. Can anyone tell me where I have to edit to ensure it’s not expanded on page load. Only happens to certain pages.
EDIT: i did the following and it’s fine now.
#topMainNav .dropdown {
position: absolute;
padding: 5px; /* padding: 5px 10px 5px 10px; */
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
z-index: 1;
display: none; /* <<-- **ADDED THIS AND IT SOLVED THE PROBLEM** */
}
try