[Resolved] Smooth dropdown menu phone

Home Forums Support [Resolved] Smooth dropdown menu phone

Home Forums Support Smooth dropdown menu phone

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1139543
    Gonzalo

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

    #1139722
    Tom
    Lead Developer
    Lead Developer

    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 ๐Ÿ™‚

    #1140124
    Gonzalo

    Thank you Tom, work perfectly!

    #1140538
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.