Site logo

[Resolved] Mobile layout for Secondary nav on tablet

Home Forums Support [Resolved] Mobile layout for Secondary nav on tablet

Home Forums Support Mobile layout for Secondary nav on tablet

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2519891
    Alex

    Hi guys,

    I am trying to achieve the mobile layout for tablet. More specifically, I’d like to get the footer hamburger of the secondary navigation visible in tablet mode.
    Any ideas how can this be done?

    Thanks

    #2520009
    David
    Staff
    Customer Support

    Hi there,

    add this CSS :

    @media (max-width: 1024px) {
        .secondary-navigation .menu-toggle {
            display: block;
        }
    
        .secondary-navigation ul,
        .secondary-navigation:not(.toggled) .main-nav>ul {
            display: none;
        }
    
        .secondary-navigation .inside-navigation {
            flex-direction: column;
        }
    
        .secondary-navigation .inside-navigation .main-nav {
            width: 100%;
        }
    }
    #2520393
    Alex

    Works like a charm! Thank you!

    #2521023
    David
    Staff
    Customer Support

    You’re welcome

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