Hello, I’d like to keep my logo on the left, but I’d like my menu items to be centralized. Is there a way to do so using the Refresh theme?
Hi @belal5 ,
Would you mind to share your URL website? with password if its protected. Thanks!
Thank you for the information.
Try this.
- 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 “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu {
grid-gap: 19rem;
}
Result:
I hope it help.
This code works perfectly on desktop, but on mobile it makes the header overflow.
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
@media (min-width: 768px){
.header--middle-left {
column-gap: 25rem;
}
}
@media (max-width: 992px){
.header--middle-left {
column-gap: 5rem!imprtant;
}
}



