Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello! Can anyone help me ? I want to center my menu on the same line that my logo is placed ( i chose the centered to the left option for the logo) but it automatically also drags the menu to the left and I need the logo in the center...
Hello @EvaMtz ,
You can follow these steps:
1. Go to Online Store->Theme->Edit code
2. Open your theme.liquid file, paste the below code before </body>
<style>
@media (min-width: 1024px ) {
.header {
display: flex;
justify-content: space-between;
}
.header .header__inline-menu {
margin-top: 0px !important;
}
}
</style>
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team
Worked like a charm!
At first, this was the first post where I was almost there. Unfortunalety, my Logo is not centered. But the menu is on the left side, finally.
Do you have a solution?