I want to change the following:
Change the behaviour of the mobile menu. Instead off slide from above to center, I want to just slide from left to right, just like most other iphone apps.
And I want to change the icon if possible. How do I do this in the Enfold theme?
Hi johannesdorsey!
Thank you for using the theme.
Yes, it is possible to change the direction of the mobile menu but the task falls beyond the scope of support. You need to hire a freelance developer to modify the mobile menu animation for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
You can change the mobile menu icon on functions.php. Look for the facebook char codes for example on line 221:
'mobile_menu' => array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),
Change the icon char codes ue8a5 to something else. Find the character codes by hovering over the icons when editing any elements with icons on posts or pages:
We’ll use the char code on the example above but we’ll remove the backslash.
'mobile_menu' => array( 'font' =>'entypo-fontello', 'icon' => 'ue8f4')
I hope that helps.
Regards,
Ismael
Thank you for the indication, guys! It’s very helpful!
Is it possible to get rid of square where the icon is sitting? Thank you very much in advance!
Alfiya
Hey Alfiya!
Try adding this code to the Quick CSS:
#advanced_menu_toggle, #advanced_menu_hide{
border: 0;
border-radius: 0;
background: transparent;
}
Cheers!
Josue