I need to change the responsive size of the mobile header, so it is shown from 1300px to 0px, and the desktop header from 1300px to the bigest size possible.
I know I have to add css code in the css area, but I can´t gind the way to ad the proper code.
Enfold theme.
Hey Tomatito11,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 1300px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Rikard