Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #206793

    Hi,
    I want to disable the responsive menu because im going to use an menu plugin that is responsive also .
    Is there any option somewhere or quick css code do disable the responsive menu?

    Cheers!

    #206817

    Hey Mattias!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .mobile_active.mobile_menu_tablet #advanced_menu_toggle, .responsive .main_menu {
    display: none;
    }

    Best regards,
    Yigit

    #206821

    Sorry it dident work for me.

    Link : http://clustret.sokonline.se/

    I used firebug and tried this one but dont know if it is right css code?

    
    .mobile_active #advanced_menu_toggle {
        display: none !important;
    
    #206822

    Hi!

    Yes, please flush browser cache after applying the code and refresh your page a few times

    Cheers!
    Yigit

    #206824

    Hi!

    I have added your code to as instructed and flushed my browser cache and refresh the page a few times.
    Still doesn’t work for me :-(

    //strom

    #206837

    Hi!

    Please go to wp-content\themes\enfold\js folder and open Avia.js file and find

    avia_responsive_menu();

    and comment it out as following

    //avia_responsive_menu();

    Regards,
    Yigit

    #211006

    I’m having difficulty with this as well.

    I tried the first css and it just hid all my menu items.
    Next I tried commenting out the avia_responsive_menu(); in the avia.js, and this worked, but it also disabled my small fixed header from sizing. It just stays big instead of scaling down when a user scrolls down.

    Is there a better way to get rid of the responsive menu, so I can avoid the header issue?

    thanks

    #211050

    Hey!

    Please use this to remove the mobile menu:

    @media only screen and (max-width: 968px) {
    .responsive #top .mobileMenu {
    display: none !important;
    }
    }

    Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    #211054

    Great! Seems to be working just fine. Thanks

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘disable responsive menu’ is closed to new replies.