Archived topic
Align mobile menu to the left
3 replies · Started by emanharout on January 3, 2021
Viewing posts 1–4 of 4
I've been trying to align the mobile hamburger menu to the left. Currently its centered by default. I've tried this code posted in the past:
button.menu-toggle {
text-align: left;
}
But it doesn't seem to have any effect. Is there anything else I can try? Thanks in advance!
Hi there,
Try this instead:
@media (max-width: 768px) {
.main-navigation {
margin-left: 0;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Thanks Leo! That worked.
No problem :)
This archived topic is closed to new replies.