How can I reposition my logo using CSS?

Hey i want my logo to be more to the left corner and not that far right as it shows in the following image,

i saw a post here and a answer to edit the theme.css but theres no theme.css in dawn right now so please help.

1 Like

Hi @timonbottger ,

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

1 Like

Hey, thanks for the quick response the website is https://8hoursclo.com and the password is xaunga

1 Like

Thank you for the information. I tihnk you use a bigger screen size.

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. And Save.
@media screen and (max-width: 1366px){
header.header.header--middle-left.header--mobile-left.page-width.header--has-menu {
    padding-left: 1rem;
    padding-right: 1rem;
}
}

Result:

I hope it help.

1 Like