Hi support,
first: Thanks for our theme :-)
Is it possible to have two icons for the hamburger menu? I’ve changed the first icon and it’s fine but now I need a code for the “closed” icon.
Here is the Code I am using:
.av-hamburger::before {
content: url(https://xxxxxxxx/wp-content/uploads/2019/08/menu-offen.png);
display: inline-block;
padding-top: 15px;
}
.av-hamburger-inner {
display: none;
}
Please help :-)
Hey katjax3,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field instead of your css above:
.av-inserted-main-menu .av-hamburger-box::before {
content: url(https://png.icons8.com/flat_round/50/000000/list.png) !important;
display: block;
padding-top: 15px
}
.av-inserted-main-menu.is-active .av-hamburger-box::before {
content: url(https://img.icons8.com/cotton/50/000000/menu.png) !important;
display: block;
padding-top: 15px;
}
.av-hamburger-inner {display:none!important;}
Best regards,
Mike
Thanks Mike :-)
Hi Mike,
yes
Best regards,
Katja