Tagged: menu
Dear Kriesi,
My website menu is overlapping the logo when I reduce the browser width. How can I make the mobile menu appear sooner?
I previously used the following custom css for this, but it’s no longer working:
@media only screen and (max-width: 990px) {
div .av_one_third {
margin-left: 0%;
width: 50%;
}}
Hi Richard,
Can you try adding this CSS code in Quick CSS:
@media only screen and (max-width:1340px) {
.responsive #top #header .av-main-nav .menu-item {
display: none;
}
.responsive #top #header .av-main-nav .menu-item-avia-special {
display: block;
}
}
Best regards,
Nikko
Great, that works
Thank you