Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #581968

    We are trying to force the mobile menu to appear on the ipad landscape format, but we are having a great deal of trouble doing so. We’ve updated Enfold, we have the mobile menu set to appear on Smartphones and Tables (990px), and we’ve used this code in the attempt to force it through CSS:

    @media screen and (max-width: 1200px) {
    #advanced_menu_toggle { display: block !important; }
    nav.main_menu { display: none !important; }
    }

    Nothing has worked thus far. Is there something we’re missing?

    #582104

    Hi jaimemerz,

    Please try the following instead:

    @media only screen and (max-width: 1024px) {
    nav.main_menu {display:none !important;}
    #advanced_menu_toggle, #advanced_menu_hide {display:block !important; }
    }

    Thanks,
    Rikard

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