Hello,
I’ve got a problem with my logo and menu section. While resizing of the browser, the menu goes too late in to a mobile menu (burger) and my logo doesn’t get smaller. So they overlapping each other. I tried all the Quick CSS codes, but nothing helped.
Maybe you can help me to solve this problem.
Hey igorcbg,
The menu is too long, so this code will make it turn to burger mobile below 1100px.
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 1100px) {
nav.main_menu {
display: block !important;
}
.menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Thank you, it works.