Hello to all,
I would like to edit menu little bit.
1) I want text ‘MENU’ in front of burger menu icon. Text menu will be also active for click, icon will be animated as is. Example: http://newproject.tech/menu.jpg
2) I would like to change overlay into white and font into dark grey.
Any iideas what I should recode? Thank you for help!
I wish you all nice christmas time :)
Hi Milan!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
li#menu-item-burger a:before {
content: 'Menu ';
font-size: 20px;
}
div.av-burger-overlay-bg {
background-color: white;
}
#top #wrap_all #av-burger-menu-ul li a {
color: #999;
}
Cheers!
Yigit
Hello Yigit,
Thank you very much, almost it is done :)
Just detail: when menu is opened, menu icon will dissapear – should I set something like z-index?
oh and last thing – I would like to have icon smaller, like 50% of current size :) And it will all what will make me happy!
Hi,
Please change the code to following one
span.av-hamburger:after {
content: 'Menu ';
font-size: 20px;
float: left;
margin-right: 5px;
}
div.av-burger-overlay-bg {
background-color: white;
}
#top #wrap_all #av-burger-menu-ul li a {
color: #999;
}
span.av-hamburger.is-active:after {
opacity: 0;
}
span.av-hamburger-inner {
width: 25px;
}
Best regards,
Yigit
Thank you very much!
Best wishes,
Milan