Archived topic
De-activating the mobile menu
3 replies · Started by Peter on January 16, 2019
Hi,
Is there a way to completely disable the mobile menu system in GP, so that no matter how small a device the standard menu with lettered links is always present?
For a client I am trying to solve this.
Their website has a main menu with very few linksand they want the links to present even on small mobiles.
I have seen in the documentation that there can be no breakpoint smaller than 768px.
thanks.
Peter
Hi there,
hmmm... maybe this would work:
@media (max-width: 768px) {
.main-navigation .menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
}
}
Hi David,
Great! On the localhost dev.site it works!
Thanks a lot for your help.
Let me just remark, that we are still in the process of trying to convince our client about choosing a mobile first approach in this project too. :-)
Thanks again.
P.
Awesome - they can take some persuading :)