Hello,
I am trying to get the burger menu to show up at a larger page width. I am able to do this, but the burger menu displays centrally.
I don’t want this, I want it to show as it does at 782px wide. Can you please help? Here’s the code I’m using.
@media only screen and (max-width: 1430px) {
#top #header .av-main-nav > li.menu-item {
display: none!important;
}
#top #header .av-burger-menu-main {
cursor: pointer;
display: block!important;
}}
Hey jonrouse,
Please try this code to float the burger menu icon/button to the right:
@media only screen and (max-width: 1184px){
.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu>div, .html_header_top.html_bottom_nav_header #header_main_alternate .main_menu ul:first-child {
width: 20px;
height: 50px;
float: right;
}
}
Best regards,
Dude
Thanks @Dude
is there a way to get the version that adds white space, places the logo on the left and puts the burger on the right to kick in earlier?
Currently happens at around 784px wide, and I’d like this to happen at 1184 wide instead.