Site logo

Archived topic

My submenu disappears too quickly

3 replies · Started by Adrien on September 23, 2021

Viewing posts 1–4 of 4

Dear Team, My submenu needed to be lowered down a bit but then it now vanishes before we get time to click.
Even at the speed of the light, Im unable to reach the sub menu before it disappears. Thank you for your help.

Hi there,

remove the :before / :after CSS you have for adding the up arrow.
And try this instead:

.main-navigation ul.sub-menu:before {
    content: '';
    display: block;
    height: 20px;
    width: 100%;
    position: absolute;
    top: -20px;
}
.main-navigation ul.sub-menu:after {
    content: '';
    position: absolute;
    top: -10px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    font-size: 0;
    line-height: 0;
}

Dear David, it worked like magic! thank you very much.

Glad to hear that!

This archived topic is closed to new replies.