Site logo

Archived topic

Remove Mobile Menu for Secondary Nav

5 replies · Started by Paul on August 7, 2019

Viewing posts 1–6 of 6

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!

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.

Done, David! Thanks for looking!

Try this CSS:

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

Worked like a dream! Thanks David!

You're welcome

This archived topic is closed to new replies.