hello again,
shhh dont let kriesi know that i am asking this, but how do i change the kriesi trademark hamburger menu icon on mobile menu? i think it is very stylish (i like it) but may like to keep to boring hamburger menu as it doesnt confuse customers too much. Dont let him know im asking this (as he may ‘do his nut’) ha
if this has already been asked please point me in the right direction, it has been a long day..
Many thanks, David
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons) {
$icons['mobile_menu'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue811');
return $icons;
}
Cheers!
Josue
Works perfectly!
Thankyou
David