Hi there!
How do I move the Menu to the left instead of being stacked?
I can’t find the option, can you help me?
Website: https://plenitudvital.es/
Thanks!
A user seeks to reposition their website’s navigation menu from a stacked/centered layout to the left side of the header.
Solution Provided:
.header--top-center classgrid-template-areas and sets justify-self: left for the inline menuImplementation Note:
theme.liquid with <style> tagsbase.css insteadStatus: Resolved. A follow-up question about implementation details remains unanswered.
Hi there!
How do I move the Menu to the left instead of being stacked?
I can’t find the option, can you help me?
Website: https://plenitudvital.es/
Thanks!
Hi @kingdom2
Try this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “theme. Liquid” file. Find the tag and paste the code below before the tag.
@media screen and (min-width: 990px) {
.header--top-center {
grid-template-areas:
"navigation heading icons";
}
.header--top-center .header__inline-menu {
justify-self: left;
}
}
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Thanks @Made4uo-Ribe , small remark the code goes in base.css
Oh, sorry forgot to add the tag.
Welcome! Would you mind hitting ‘like’ as well? Thanks!
How do you add it all together