Archived topic
Customizing the Mobile menu
5 replies · Started by Dax on March 8, 2019
Hello,
How do I left align mobile menu items? At the moment they are all centralized and it looks crud. Is there also any way to make the close box appear next to the word menu as opposed to right of the menu box?
Thanks in advance
Hi there,
could you link us to your Site. You can edit your original topic and use the Site URL field for privacy.
Hello,
Done.
Thank you
Hi there,
You have some custom CSS which is centering the items:
.main-navigation .main-nav ul li a, .menu-toggle, .main-navigation .mobile-bar-items a {
text-align: center;
}
If you don't have control over that CSS, you can left align them like this:
.main-navigation.slideout-navigation .main-nav ul li a {
text-align: left;
}
As of right now it's pretty difficult to add the close item directly inside the menu. However, this is a feature we've added in GPP 1.8, which will be available for testing in the next couple weeks :)
Thank you very much Tom!
You're welcome :)