Hello
There is an error on mobile version via Safari browser, the thing is mobile menu isn’t opening when clicking on the humburger icon, it just unzoom the website but doesn’t open the menu model.
This is the screen after clicking the humburger icon : https://imgur.com/SgbkChc
PS: it doesn’t work on Safari ios only, other browsers works perfectly
Hello @gorthi !
Try to add this CSS code in the theme panel settings -> Custom CSS:
.td-js-loaded .td-menu-background, .td-js-loaded #td-mobile-nav{
visibility: visible !important;
-webkit-transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);}
.td-menu-mob-open-menu .td-menu-background{ transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);}
I hope that helps you!
Thank you!