Archived topic
Turn Off Secondary Menu on Mobile
4 replies · Started by David on January 30, 2019
Hi,
I want to turn off the Secondary Menu on mobile devices, since I am using the Slide Out Menu for mobile only.
I tried:
@media (max-width: 768px) {
.top-bar {
display: none;
}
}
But it did not work for me.
Also looked to see if I could use a layout element for to hide, but mobile was not an option.
What would you recommend?
Thanks,
David
Hi there,
Try this:
@media (max-width: 768px) {
.secondary-navigation {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Thanks Leo, it worked.
No problem :)
How can I turn off Secondary Menu on Mobile without relying on css.
Why?
Because on desktop Google PageSpeed Insights drops my score from 100 to 93 for a Cumulative Layout Shift (CLS) greater than 1. While the mobile version still scores 100.