Site logo

Archived topic

Hide Secondary menu on tablet and mobile

2 replies · Started by Anders Nielsen on October 18, 2020

Viewing posts 1–3 of 3

Hi

I'm trying to hide the secondary menu on tablet and mobile.

Using the internat controls, but the "navigation selction" goes for all units!

Is there a css I can use?

Hi there,

Using the internat controls, but the “navigation selction” goes for all units!

Not sure if I fully understand.

Have you tried CSS like this?

@media (max-width: 768px) {
    #secondary-navigation {
        display: none;
    }
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

You can tweak the 768px as you see fit.

Thx

This archived topic is closed to new replies.