How to I move my logo in the footer a little bit to the left

Topic summary

Goal: Move the footer logo slightly left to align with other site elements on a Shopify store.

Context and inputs:

  • Store URL provided (seedsdelux.lu) after requests for access details. A screenshot and a result image were shared to illustrate the alignment and outcome.

Proposed solutions (CSS-based):

  • Edit theme CSS via Shopify Admin > Online Store > Themes > Actions > Edit code > Assets, then add at the bottom:
    • Option 1 (global footer image): footer#footer img { margin-left: -9px; }
    • Option 2 (specific footer section): In sections.css, add #footer-about img.img-fluid { margin-left: -8px; }

Notes:

  • Both approaches shift the logo left by a small negative margin; the second targets a more specific selector.
  • Visual confirmation indicates the logo aligns better after the change.

Outcome and status:

  • The requester expressed gratitude, implying the solution worked.
  • Discussion appears resolved with no outstanding questions.
Summarized with AI on January 23. AI used: gpt-5.

I would like to move my logo a little bit to the left to make it allign with the other parts of my site

anyone got a sollution?

1 Like

Hi @vhR1 ,

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

Hello,

You can provide url site for me, I can check it for you

Thank you

hello it’s seedsdelux.lu

1 Like

hello it’s seedsdelux.lu

Thank you fro the information.

Try this.

  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, 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:
  4. And Save.
footer#footer img {
    margin-left: -9px
}

Result:

I hope it help.

Yes, you can open file sections.css and add my code at bottom file:

#footer-about img.img-fluid{margin-left:-8px}

it will work for you

thank you

Thanks, a lot I’m grateful !!

Thank you for your help! I appreciate that a lot!