Dear support,
i change from desktop to mobile-menu with the following code. But around 950px the mobile menu appears on the left side instead of the right side. How can i avoid this?
/* Activate burger menu */
@media only screen and (max-width: 1200px) {
#top #header .av-main-nav > li.menu-item {
display: none!important;
}
#top #header .av-burger-menu-main {
cursor: pointer;
display: block!important;
}}
Hey dondela,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (min-width: 990px) and (max-width: 1200px) {
#header_main_alternate {
display: none;
}
.html_header_top .av_bottom_nav_header .av-logo-container .main_menu {
display: block;
left: auto;
right: 0;
}
}
Best regards,
Rikard
Hey Rikard,
thanks for your help. I tried this code, but now mobile-menu is underneath the Logo and on the left side instead of the right side. (Screenshot)