Archived topic
How do I move my menu on mobile?
2 replies · Started by stefanie on February 7, 2021
Hi there,
Is it possible I can move my menu on mobile to top left rather than in the middle? I have got it set to 'align left' but it hasn't done it. Is it also possible to change the font or make the lettering bold as I feel it just doesn't stand out enough?
I have another issue that I think occurred at the same kind of time as when I moved my menu to the top bar with additional CSS and that is my Google Analytics is now not working. Is there any way that me moving my menu to the top on mobile has messes up my Google Analytics? Just wondering.
Here's my website so you can see what I mean about the menu being in the middle
zestforever.com
Thanks so much :-)
Hi Stefanie,
Try this CSS:
@media (max-width: 768px) {
.main-navigation .menu-toggle {
display: flex;
margin-right: auto;
font-weight: bold;
}
}
Your google analytics shouldn't be effect by the position of menu.
Let me know :)
Wow, Ying, thanks. Worked perfectly! Amazing. Thank you so much :-)