Hi. I am attempting to have the hamburger menu appear for the tablet size (max-width: 1084px) because the menu runs into the logo currently. I cannot find the code in the files to change it and I do not know how to properly code this in Quick CSS.
Also, I would like to have the hamburger menu go under the logo on the mobile size (max-width: 320px). Right now, the hamburger menu, search, and ‘add to cart’ run into the logo on a 320×568 screen.
Please get back to me asap. This is not a live site. I am building it on Local.
Hey caleighdemien,
Please try adding this CSS code in Quick CSS:
@media only screen and (max-width:1084px) {
.responsive #top .av-main-nav .menu-item {
display: none;
}
.responsive #top .av-main-nav .menu-item-avia-special {
display: block;
}
}
@media only screen and (max-width:320px) {
.responsive #top #wrap_all .main_menu {
position: static;
}
}
Best regards,
Nikko
