Site logo

Archived topic

Smooth dropdown menu phone

3 replies · Started by Gonzalo on January 21, 2020

Viewing posts 1–4 of 4

Hi there,
it' s possible have a smooth dorpdown menu, in phone view?
Regards

Hi there,

Give this a shot:

#generate-slideout-menu.main-navigation .main-nav ul ul {
    transition: opacity 500ms ease-in-out, max-height 500ms ease-in-out;
    max-height: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
}

#generate-slideout-menu.main-navigation .main-nav ul ul.toggled-on {
    max-height: 9999px;
    opacity: 1;
    pointer-events: auto;
}

Let me know :)

Thank you Tom, work perfectly!

You're welcome :)

This archived topic is closed to new replies.