How can i add brand logo in footer on the left side?

Topic summary

A user seeks help adding a brand logo to the footer’s left side of their Shopify store.

Initial Solution:

  • Add logo via Online Store → Themes → Customize → Footer section → Add image/logo block
  • Drag to position on left side

Problem Encountered:
After adding the logo, footer menus were pushed outside the page boundaries. User wants “The company” menu positioned directly under the brand logo.

CSS Fix Provided:

  1. Adjust footer grid width from 20% to 16.6% to accommodate the new logo block
  2. Use absolute positioning with top: 50px on the second footer block to move it under the logo

Current Status:
The solution works on the helper’s end (confirmed with screenshots), but the original poster reports the menu still appears at the top header instead of under the logo, despite implementing the exact CSS code. The discrepancy suggests possible caching issues or implementation differences that remain unresolved.

Summarized with AI on October 24. AI used: claude-sonnet-4-5-20250929.

how can i add brand logo in footer on the left side?

@nikihuga,
Go to Online Store → Themes → Customize.
Scroll down to the Footer section.
Click + Add block.
Look for Image or Logo block (some themes name it differently).
Upload your brand logo there.
Use the drag handle to move it to the left side of the footer.
Save.
If I was able to solve your issue, please don’t forget to like and mark it as solution,
as it may help others who have the same issue. If you need any further assistance, feel free to reach out to me.
Best
Anmol

hi,

i have added the logo, but now all other footer menus were pushed to outside of the page

ideally i want “The company” menu to be under the brand logo

@nikihuga ,
please share your store url and password, if password protected
Best
Anmol

You must change this code

@media (min-width: 750px) {
    .footer__blocks-wrapper .grid__item {
        width: 20% !important;
    }
}

To this

@media (min-width: 750px) {
    .footer__blocks-wrapper .grid__item {
        width: 16.6% !important;
    }
}

thanks!

now how can i move “The company” menu to be under the brand logo

Add this code to do that

@media (min-width: 750px) {
  .footer__blocks-wrapper .footer-block:nth-child(2) {
    position: absolute;
    top: 50px;
  }
}

thanks but this doesnt work

Where did you add the code? I tried to add it on your HTML and here is the result.

right under here:

Did you save the file, because I cannot see that code in your HTML?

yes it’s saved now, please check thanks

Reload your page, then you can see it works now.

it’s located on the top of the page:

It works well on my end.

I did exactly what you did, the menu is still up there at the top header