Tagged: 

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

    Hi there,

    I have added this code as per a suggestion on your site to fix the behaviour of the menu when using lower resolutions:

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

    The issue I have now is that when viewing on a browser, the menu appears “open” on the right side of the screen, past the edge of the main layout. Is there a simple way to ensure that the menu is closed when viewing on a desktop at lower resolutions?

    Menu Behaviour

    #681125

    Hey Chris,

    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

    #681336

    That did it – thanks very much :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Resizing and Menu Appearance’ is closed to new replies.