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

    Hi,
    On our new site we are seeing the menu overlap the logo when shrinking the desktop browser window. Is there a CSS code that will break to the mobile/burger menu at a larger width than the defaults in the menu settings?
    Thanks

    #1119793

    Hey mattb1169,

    Please try the following in Quick CSS under Enfold->General Styling:

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

    Best regards,
    Jordan Shannon

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