How can I reposition my logo in the header to the left?

Topic summary

A user seeks to reposition their store logo to the left of the hamburger menu icon (three horizontal lines) in the header.

Proposed Solution:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add CSS media query targeting screens min-width 990px to modify header layout using grid-template-areas
  • Apply !important flag if the styling doesn’t take effect initially

Status: The solution provider shared code snippets and a result screenshot, but the conversation appears incomplete with some garbled text. No confirmation from the original poster on whether the solution worked.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

How can I move my logo to be to the left of the three horizontal lines in the header? Any help would be greatly appreciated!

1 Like

Hi @flammagreg

Check 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 screen and (min-width: 990px) {
.header--top-left.drawer-menu, .header--middle-left.drawer-menu {
    grid-template-areas: "heading navigation icons";
}
}

And Save.

if its not working add !important.

@media screen and (min-width: 990px) {
.header--top-left.drawer-menu, .header--middle-left.drawer-menu {
    grid-template-areas: "heading navigation icons" !important;
}
}

And Save.

Result:

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

1 Like