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.
This topic was modified 8 years, 1 month ago by aedwa021.