Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #829518

    Hi there the main menu has disappeared for the laptop size. Any ideas?

    #829537

    Hey web4698,

    It disappeared because of this code in Quick CSS:

    .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate {
        display: none;
    }

    which is inside:

    @media only screen and (max-width: 1289px) {
    
    }

    If there should be a burger menu that should appear on it, try flushing out the cache if you have a caching plugin or disable minification if you have one.

    Best regards,
    Nikko

    #829695

    Ok thanks. What would be the correct css to add to switch the menu to a mobile menu sooner?

    #830065

    Hi,

    You can use this css code:

    @media only screen and (max-width:1400px) {
      .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate {
        display: block !important;
      }
    
      #header .main_menu li {
        display: none;
      }
    
      #header .main_menu .av-burger-menu-main {
        display: block !important;
      }
    }

    Just change the 1400px to any value (base it on the screen width). Hope this helps :)

    Best regards,
    Nikko

    #830226

    That doesn’t work. Any other ideas?

    #831703

    Hi,

    You still have this in your child theme style sheet, please try to remove it:

    @media only screen and (max-width: 1289px) {
    .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate {
        display: none;
    }
    }

    Best regards,
    Rikard

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