Archived topic
Menu breakpoint
3 replies · Started by Harris on February 17, 2018
Hello,
How can I adjust the menu breakpoint?
I mean the point from wich the full menu becomes a hamburger.
Can I set somehow if the full menu at the users screen breaks in two lines then convert it to hamburger?
If not can I just set a specific breakpoint? i.e. from 1200 px and less the mobile menu to kick in?
And one more thing, how can I hide the top bar in mobile and tablet modes?
Thanks
Hi there,
1. This is planned feature but for now this should help: https://docs.generatepress.com/article/mobile-navigation/#initiating-the-mobile-navigation-at-a-different-width
2. Try this CSS:
@media (max-width: 768px) {
.top-bar {
display: none;
}
}
Thanks Leo
No problem!