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

    Hello,

    I was hoping you could share the way to remove the mobile menu animation. I would prefer it to just appear vs. animate.

    Thank you!

    #752082

    Hey Elliot,
    Try this code in the General Styling > Quick CSS field:
    to make menu “appear”

    html body#top #mobile-advanced {
        top: 0;
        left: auto;
        right: -100%;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        right: 0;
    }
    
    html body#top .show_mobile_menu #mobile-advanced {
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        right: 0;
    }

    To make menu slide from right side:

    html body#top #mobile-advanced {
        top: 0;
        left: auto;
        right: -100%;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        transition: right 0.2s;
    }
    
    html body#top .show_mobile_menu #mobile-advanced {
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        right: 0;
    }

    Best regards,
    Mike

    #752084

    Worked perfectly, thank you Mike!

    #752115

    Hi,
    Your welcome and Thank you for using Enfold.

    Best regards,
    Mike

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