Hello together,
a Customer of mine has a really long Navigation-Bar.
I want to set the Break-Point for the Burger Menu already at 1200px.
Where can I do that?
Tried already something, nothing works.
The BreakPoint comes at 990px
Thanks a lot,
felixl
Hi felixl
Try the following code inside Quick CSS:
@media only screen and (max-width:1200px){
.av-main-nav>li.menu-item-avia-special{
display:block;
}
.av-main-nav>li.menu-item{
display:none;
}
}
Best,
Michael
Hi felixl,
If Michaels code doesn’t work the please try this:
@media only screen and (max-width: 1200px) {
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
Hi felixl,
You can validate that css through a service like
https://jigsaw.w3.org/css-validator/
And put the code Rikard gave you on top of the Quick css.
Best regards,
Victoria
hello dear supporters :-)
thanks a lot – now it´s working.
yipehhh!
have a great day,
felixl
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon