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!
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
Worked perfectly, thank you Mike!