How to center a logo and adjust nav menu on Expanse Theme?

Hi,

How do I center the logo and move the nav menu ivon to the left on Expanse Theme?

1 Like

Hi @Bhanelion ,

Would you mind to share your URL website? with password if its protected. Thanks!

Hi,

I would need to center my logo on the mobile version (expanse theme). Could you please help?

1 Like

Yeah, sure but I need your store URL. So I can check it. Not the admin URL, only the URL where costumer purchases your product. Thanks!

https://tapis-ethnique.com/

There you go

1 Like

Thanks for the info, 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 “Assets” folder, click on “base.css, style.css or theme.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:
@media only screen and (max-width: 768px){
.header-layout {
    display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.header-item.header-item--logo {
    justify-content: center;
    padding-left: 40px;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

It worked wonderful, thank you so much :heart: :heart: :heart:

1 Like

Welcome. :blush: Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!