[Resolved] Remove Mobile Menu for Secondary Nav

Home Forums Support [Resolved] Remove Mobile Menu for Secondary Nav

Home Forums Support Remove Mobile Menu for Secondary Nav

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

    Hey guys.

    Quick quick question.

    Secondary Nav Menu With One Item

    I have a secondary nav menu on this site (see screenshot) that contains social icons (just instagram right now).

    I want to render the icons directly on mobile, so how do I disable the “☰ MENU” for secondary nav only?

    I am successfully using the Off Canvas Menu for the Primary Nav.

    Thanks in advance!

    #978010
    David
    Staff
    Customer Support

    Hi there,

    can you link me to your site so i can take a look?
    You can edit your original topic and use the Site URL field to share the link privately.

    #978016
    Paul

    Done, David! Thanks for looking!

    #978031
    David
    Staff
    Customer Support

    Try this CSS:

    @media (max-width: 768px) {
        .secondary-navigation .menu-toggle {
            display: none;
        }
        .secondary-navigation ul {
            display: block;
        }
    }
    #978240
    Paul

    Worked like a dream! Thanks David!

    #978592
    David
    Staff
    Customer Support

    You’re welcome

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