Tagged: 

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

    How can I completely disable the mobile menu so it never displays? I ONLY want to show the “regular” navigation. This is the URL to my site http://tufdoor.com/

    I will change the header to be logo top center with the menu underneath once I can eliminate the mobile menu being used.

    Thanks in advance for your help! – Perry

    #993651

    Hey Perry,
    This css code should do the trick – you can add it to the child theme style.css file or quick css field:

    
    @media only screen and (max-width: 989px) and (min-width: 768px){
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: block !important;
    }
    
    .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
        display: none !important;
    }
    }
    

    Best regards,
    Dude

    #993676

    Dude,

    Thanks for the help. However, that did not work. I posted your code and I still see the mobile navigation. Please advise and thanks again for your help

    #994054

    Hi,

    Have you tried adding his code to the very top of quick css so that it runs first? Also be sure to clear your cache a few times over.

    Best regards,
    Jordan Shannon

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