Drop-Down Menu Issue
-
I was having an issue with the drop down menu where the sub item would disappear before I could mouse onto it. I resolved the issue by moving the sub items slightly further up. I made the following change to the css:
.main-navigation ul ul {
float: left;
position: absolute;
/* top: 2.5em;
*/top: 2.35em;
left: -999em;
z-index: 99999;
}The difference in appearance has been negligible, but it’s allowed my dropdowns to work as expected.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Drop-Down Menu Issue’ is closed to new replies.