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

    Hey,

    I want to display the mobile menu button on my site when my iPad and iPad mini is on landscpae. It works only for Prtraitmode (options>Header>Mobile Menu – Activate for smartphones and tablets).

    I read some posts about changing in js>avia.js the line with ” witchWidth: 768″. But there is no such line in my avia.js file!

    please help

    best regards

    #543854

    Hey Pasi91!

    Navigate to Dashboard > Enfold > Header > Mobile Menu and set it to activate for tablets.

    Best regards,
    Elliott

    #543866

    When the iPad is on Landscape there is still no mobile menu. Only in portrait format, but I need it in landscape too!

    #543876

    Hey!

    Add this to your custom CSS.

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

    And adjust the 1200px value to however wide your tablet screen is in landscape.

    Best regards,
    Elliott

    #543902

    Thanks for your solution. It works!

    But now the backbutton (cross) is gone when you open the menu… Any idea why this is happening?!?

    #543980

    Hi!

    Can you send us a link to your page so we can take a look? You can set your reply as private if you wish.

    Best regards,
    Elliott

    • This reply was modified 8 years, 4 months ago by Elliott.
    #543990

    The site is under construction but I can send you a screenshot in privat section

    • This reply was modified 8 years, 4 months ago by Pasi91.
    #544086

    Hi,

    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; }
    }

    Regards,
    Rikard

    #544521

    Thanks, seems it works Rikard!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Mobile menu for iPad landscape and iPad mini landscape’ is closed to new replies.