Okay
  Public Ticket #2809593
disable off canvas menu for mobile
Closed

Comments

  •  28
    Co-Brains started the conversation

    Hi! I have a menu with only one item, so I'd like to leave it in the header navigation on mobile and disable burger menu.

    Is it possible to do it?

    I noticed that with recent update there is a new section "Header Mobile Breakpoint", but it can't go under 1000px.
    Is it possible, maybe in next updates to allow to set that value under 1000px, maybe 0px too (in case if someone would like to disable off canvas navigation like me)?

    Thank you

  •  1,878
    Judith replied

    Hi There,

    For you to be able to maintain the header navigation menu on mobile as well without the hamburger menu, you got to increase the mobile breakpoint to be more than 1000px, 

    For the request on having a lower than 1000px mobile breakpoint, we will add this on our wishlist for the coming updates.

    Thanks.

  •  8,844
    Tahir replied

    Hey Again,

    We can do this using some custom CSS code if need be.

    Thanks 


    ThemeNectar Support Team 

  •  1
    Gavin replied

    Hi I am interested in doing this as well. What is the CSS required to do this? 

  •  8,844
    Tahir replied

    @Gavin,

    Please provide the page URL so we can write up the Custom CSS for your Specific Site.

    Thanks 


    ThemeNectar Support Team 

  •  1
  •  1,878
    Judith replied

    Hi Gavin,

    Please try this css:

    @media only screen and (min-width: 1px) and (max-width: 999px) {
        .slider-nav span span, #header-outer #top nav {
            display: inline-block !important;
            top: -12px;
            position: relative;
        }
        #top #mobile-cart-link, #top .span_9 > .slide-out-widget-area-toggle, #top .mobile-search {
            display: none !important;
        }
    }


    Thanks