Site logo

Archived topic

How to disable primary menu?

1 reply · Started by Mamta Kumari on July 12, 2020

Viewing posts 1–2 of 2

Hi,

I have two menus - Primary Menu and Secondary Menu on my site. Both display fine on Desktop and on Mobile. But I don't want to display Primary Menu at all on mobile.

I tried the following code to disable Primary Menu but it doesn't work.

@media (max-width: 768px) {
.menu-toggle {
display: none !important;
}
}

Please help.

Hi tere,

try this CSS:

@media (max-width: 768px) {
    .main-navigation .menu-toggle {
        display: none !important;
    }
}
This archived topic is closed to new replies.