Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1003166

    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;
    }}
    #1003635

    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

    #1003703

    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.

    #1004312

    Hi,

    Please check the below link to trigger the burger menu for higher resolution.

    Also if you like to place the menu in a different way please check the header layouts. You can use the code from the examples without creating the widget.

    Best regards,
    Vinay

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.