Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #450893

    Hello,
    I recently found this code on one of your support topics that allowed me to have a dropdown menu in landscape mode on an iPad:
    @media only screen and (max-width: 1120px) {
    nav.main_menu {display:none !important;}
    #advanced_menu_toggle, #advanced_menu_hide {display:block !important; }
    }

    This worked well in changing the menu from text (which bumped into the logo) to a dropdown. Unfortunately though, the dropdown doesn’t actually work.

    Do you have any suggestions for how to fix this?

    Many thanks, Tam

    #450904

    Hey!

    Use this code instead:

    @media only screen and (max-width: 1120px) {
    .html_mobile_menu_tablet .main_menu , .html_mobile_menu_tablet #header_main_alternate{display:none;}
    .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide{display:block;}
    .html_mobile_menu_tablet #mobile-advanced{display:block;}
    }

    Regards,
    Josue

    #450951

    Perfect! Thank you for that and for responding so quickly!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘dropdown menu ipad landscape not working’ is closed to new replies.