Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #733767

    Hi,

    I’m trying to disable the default mobile menu and leave the main menu operational on any device.

    In theme options I have:

    Header: Display of menu items: Display as icon

    And in Quick CSS i using:

    @media only screen and (max-width: 767px) {
    #advanced_menu_toggle {display: none !important;}
    li#menu-item-search {display: block !important;}
    li#menu-item-burger {display: block !important;}
    }
    

    BUT is not working, just hiding the mobile menu, but not showing the main menu.

    Can you give me any suggestions?

    Thanks

    • This topic was modified 7 years, 3 months ago by CloudChoice.
    #733779

    I was able using this code:

    @media only screen and (max-width: 990px) {
    #advanced_menu_toggle, #advanced_menu_hide { 
    display: none !important; } 
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu { display: block; }}

    BUT NOW a new problem, with 768px the menu goes down the logo.

    Any sugestions?

    #733796

    Hey!

    Can we please check your web site, so we can have a look?
    Thank you

    Regards,
    Basilis

    #733799

    Yes of course. You can check here:

    #733822

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu {
        display: inline-block!important;
        position: absolute;
        right: 0;
        top: 0;
    }
    .responsive .logo img {    
        max-width: 85%;
    }}

    Best regards,
    Vinay

    • This reply was modified 7 years, 3 months ago by Vinay.
    #734479

    It’s working, thank you.

    #734499

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Disable Mobile Menu and Keep Main Menu and Search Icon’ is closed to new replies.