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

    Hi support,
    Why is the menu displayed behind the logo on ipads ?
    I know the menu are too long and some menu-items are seen under the logo area.
    But how to get the menu starting AFTER the logo (and not behind it).
    Thanks for your time.
    BR, Anette

    #1293733

    Hey Anette,

    Please try this in Quick CSS, in order to activate the mobile menu at an earlier point:

    @media only screen and (max-width: 1240px) {
      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

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