Hi,
I am trying to add the MENU Text before the desktop hamburger menu. I’ve tried all kinds of solutions on your support pages, but it wont show up.
I tried this: `li#menu-item-burger:before {
content: ‘Menu’;
position: absolute;
top: 45px;
right: 50px;
}`
and this ` #top #advanced_menu_toggle:after {
content: ‘MENU’;
font-size: 11px;
display: block;
line-height: 2px;
}
#top #advanced_menu_toggle, #top #advanced_menu_hide {
height: 56px;
}`
None of them work – it looks like it nothing happens…
Did something change in the latest versions of the Enfold theme? I am still on a local server, so I don’t know how to give you access to that… but I use Enfold 4.5.2
Thank you
Regards Ananda
Hey,
Please use following code instead
.av-hamburger strong {
display: block;
}
Best regards,
Yigit
Hi,
Add this to quick css:
@media only screen and (max-width: 767px) {
li.av-burger-menu-main a:before {
content: 'MENU';
position: absolute;
left: -40px;
top: 35%;
}}
Best regards,
Jordan Shannon