I want the mobile menu to fold out from the bottom to the top. Can I achieve this with CSS?
Also, is it possible to disable the animation that occurs when opening the mobile menu? So the mobile menu opens right away?
Hi crewneck!
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Sure, here it is: http://yuristhlm.se/testsite/hem/
Any ideas?
Hey!
Try adding this code to the Quick CSS:
#mobile-advanced{
-webkit-transition: none;
-moz-transition: none;
transition: none;
right: 0;
bottom: -100%;
top: auto;
}
.show_mobile_menu #mobile-advanced{
-webkit-transform: translate(0, -100%);
-moz-transform: translate(0, -100%);
transform: translate(0, -100%);
}
.avia_transform3d .show_mobile_menu #mobile-advanced{
-webkit-transform: translate3d(0, -100%, 0);
-moz-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
Cheers!
Josue
Thanks!
You are welcome, glad to help :)
Regards,
Josue