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

    Hi,
    I have many menu items on my website and need to activate my burger menu at a higher breakpoint because the menu items are overlapping with my logo. Can you please let me know how to do that?
    Thanks Nora

    #1412985

    Hey NoraGTS,

    Please try this in Quick CSS:

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

    You can adjust the 1024 pixel value to the value of your choice.

    Best regards,
    Rikard

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