Tagged: 

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

    Hi,
    My menu below the header is full width but still not wide enough for all menu items on screens of 900px and smaller.
    I’ve tried this css to make the icon menu appear earlier however the main menu disappears but the icon (mobile) menu does not appear until at much smaller screen.
    @media only screen and (max-width: 900px) {
    nav.main_menu {
    display:none;
    }
    .av-burger-menu-main.menu-item-avia-special.av-small-burger-icon {
    display: block !important;
    }}
    I hope you can have a look and see what the problem is.
    Thank you,
    Lisa

    #970606

    Hey sundara88,

    Please try this instead:

    @media only screen and (max-width: 900px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    #970652

    Hi Rikard,
    Thanks, that works great, I just deleted:
    nav.main_menu {
    display: block !important;
    }
    because two burger menu’s showed up :)
    Thank you!

    #970687

    Hi,

    Great, glad you got it working :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #970690

    You can close this
    Thanks!

    #970952

    Hi,

    Thanks for letting us know. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘mobile menu not appearing on time’ is closed to new replies.