Hello,
When I scroll to the right, in Safari 8.0.5. or on safari at iOS 8.1.3., I can see the mobile navigation. This is what happens on my new website, enfold demo and kris.at itself.
Can you please give me a solution on this and of course fix in the next update;).
Thank you in advance!
Kind regards,
Jelle Spaan
If I am right in an earlier version of Enfold you could switch the menu activation to fade-in effect , but can’t find it anymore. If it is not an option, how would you suggest to make that happen without messing with the code of enfold, but nicely adding it?
Thank you!
Hi!
Please add the following to Quick CSS:
#wrap_all { position: relative !important; }
Cheers!
Rikard
Hello Rikard,
Thank you, easy quick fix!
About my other question about the fade in menu, can you help me in the right direction?
Thank you in advance!
Kind regards,
Jelle Spaan
Hey!
I’m sorry but there is no option for the mobile menu animation even on the earlier versions of the theme. You can change the css animations manually.
.avia_transform3d #mobile-advanced {
opacity: 0;
top: -100%;
left: 0;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
transform: translateZ(0);
}
.avia_transform3d .show_mobile_menu #mobile-advanced {
opacity: 1;
-webkit-transform: translate3d(0, 100%, 0);
-moz-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
This will slide the mobile navigation from the top fading in gradually till it hits 100% opacity.
Regards,
Ismael