Hello
I would like to change the breakpoint (especially for tablets) on my website. The menu/navigation moves to the left after a certain display width instead of switching to the hamburger menu. Can anybody help me with a solution.
The website is: http://www.scc.ch
Thank you.
Bea
customize px for your need
/* Activate burger menu */
@media only screen and (max-width: 1224px) {
#top #header .av-main-nav > li.menu-item {
display: none!important;
}
#top #header .av-burger-menu-main {
cursor: pointer;
display: block!important;
}}
Hi Bea,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 1130px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Thanks @niguli for helping out :-)
Best regards,
Rikard
That worked out great. Thank you very much.
Best regards
Bea