I have this problem on multiple sites and note others have it as well.
On some screen sizes, the hamburger menu appears twice – once on the far right side and once in the center.
I have tried all the CSS I have found on the forums to hide one hamburger menu.
It ends up hiding both or neither.
Could you please look that this site (in private content) and let me know what code will work?
Thanks
Hey scottsteve,
Thank you for the inquiry.
The issue occurs because of this css modification:
@media only screen and (max-width: 1300px) {
.main_menu {
display: block !important;
}
}
To make sure that the alternate header or the container below the header is not displayed, we adjusted the css code slightly:
@media only screen and (max-width: 1300px) {
#header_main_alternate {
display: none;
}
.main_menu {
display: block !important;
}
}
Best regards,
Ismael