Archived topic
removing hamburger menu for mobile on all pages
1 reply · Started by Saskia on January 25, 2023
Viewing posts 1–2 of 2
Hello,
How can I remove hamburger menu for mobile on all pages?
Can I put a 'display: none;' somewhere in the css file?
Thanks,
Hi there,
Try this CSS:
@media (max-width: 768px) {
.main-navigation .menu-toggle {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
This archived topic is closed to new replies.