Moving things in header to different places - Focal theme

Topic summary

A user wants to reorganize their Focal theme header on mobile: move the logo to the left, shift the hamburger menu to the right, and adjust the tote bag icon leftward to accommodate these changes. They provided before/after mockup images to illustrate the desired layout.

Proposed Solutions:

Multiple responses suggest adding CSS code to theme.liquid within <style> tags:

@media screen and (max-width: 767px) {
  a.header__logo-link {
    padding-right: 180px !important;
  }
}

One contributor provided more comprehensive guidance:

  • Locate header.liquid or similar file in the Sections folder
  • Restructure HTML to reorder logo, tote bag, and hamburger menu elements
  • Use CSS flexbox with order properties to control positioning
  • Adjust spacing with margins as needed

Another respondent recommended hiring a Shopify expert or contacting support for proper implementation.

Status: The discussion remains open with no confirmed resolution. The CSS solutions focus primarily on logo positioning rather than comprehensively addressing all three requested changes.

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

I would like to move the logo to the left side and move the header hamburger to the right and adjust the tote bag icon slightly to the left to make room for the hamburger. Below are images of the change I’d like to make.

The website is https://568839.myshopify.com/

1 Like

@galleriste Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

@media screen and (max-width: 767px) {
a.header__logo-link {
    padding-right: 180px;
 }
}

@galleriste Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

@media screen and (max-width: 767px) {
a.header__logo-link {
    padding-right: 180px;
 }
}

@galleriste Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

@media screen and (max-width: 767px) {
a.header__logo-link {

    padding-right: 180px !important;
 }
}
@media screen and (max-width: 767px) {
a.header__logo-link {
    padding-right: 180px !important;
 }
}

hey @galleriste dear follow these steps

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

It is a reference example every theme layout is different so make sure to understand it and if the option is show in theme customizer that would great for you

you’ll need to adjust the theme’s code, specifically the header section in the theme.liquid or header.liquid file, and potentially some CSS in the theme’s stylesheet.

Access Theme Code:

Go to your Shopify admin panel.
Navigate to Online Store > Themes.
Click Actions > Edit code for your active theme.
Locate the Header Code:

Look for header.liquid or a similar file in the Sections folder. If your theme doesn’t have this file, check theme.liquid in the Layout folder.
Edit the Header Layout:

Locate the code for the logo, hamburger menu, and tote bag icon.
Typically, the logo is wrapped in a

or tag, the hamburger menu in a or

@galleriste

This is possible but there are some code changes. Please hire a Shopify expert or contact Shopify support.

Thanks!

@media screen and (max-width: 767px) {
a.header__logo-link {
    padding-right: 180px;
 }
}

follow these step

@galleriste Go to Online Store-----Edit Code------Find theme.liquid file-----Add the following code in the bottom of the file above tag

don’t forget to like and mark it solution