• 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 9 years, 2 months ago by aedwa021.
Viewing 1 replies (of 1 total)
  • Theme Author marcusfrontender

    (@marcusfrontender)

    Thanks for the input. I will patch that for next version with some javascript to add a delay as well.

Viewing 1 replies (of 1 total)

The topic ‘Drop-Down Menu Issue’ is closed to new replies.