• Resolved microscopes123

    (@microscopes123)


    Please tell me how to turn off the animation for the mobile menu. When you click the hamburger icon, the mobile menu slides out. And then it slides back in when you press “X”. I don’t need the animation. I just want it to open and close like normal.

Viewing 1 replies (of 1 total)
  • Hi @microscopes123

    In order to close the transition effect of the nav menu on the mobile version, Please copy the CSS code from below and paste it to Appearance > Customize > Additional CSS section.

    @media (max-width: 767px){
    .elementskit-menu-offcanvas-elements::before {
        -webkit-transition: none !important;
        transition: none !important;
    }
    }
    @media (max-width: 1024px){
    .elementskit-navbar-nav-default.elementskit-menu-offcanvas-elements {
    -webkit-transition: none !important;
     transition: none !important;
    }
    }

    The CSS code will remove the animation from your site. Let me know if that helps.

    Best Regards
    Prosenjit

Viewing 1 replies (of 1 total)
  • The topic ‘Turn off animation for mobile menu’ is closed to new replies.