How can I place my logo in the footer of the Debut theme?

Hey guys, I’ve tried for several hours now to find a possible solution to my problem, but as I’m pretty new to coding and haven’t found something that addresses this issue on the internet for my specific case, I’m just gonna ask here.

I want my logo to be in the Footer above the Copyright and Store name as shown in this picture:

I am using the Debut Theme and here is my store: https://fitness-sleeves.myshopify.com/ (PW: ohthau)

Looking forward to a possible solution and thanks in advance!

Hello @dano3333 , welcome to Shopify Community

I’ll try to help you giving some guidelines and code.

First of all you need to modify the file footer.liquid in order and add the code to manage the image

You see the modification I add between the HTML comment block.

You need to customize the name of the footer image file, and you can control the size that in this example is set to 80px width.


            
            
            

            
            <small>© {{ 'now' | date: "%Y" }}, {{ shop.name | link_to: routes.root_url }}</small>
            <small>{{ powered_by_link }}</small>
          

Also you need to upload your logo image into the /assets/ folder of your theme.

Also there is a problem, that the copyright blog height is fixed to 46px and you need to remove it. You can add te following code at the end of theme.css file

media only screen and (min-width: 750px) {
  .site-footer-item-tall {
    height: auto;
  }
}

Hope it helps, let me know if you find any problem.

1 Like

Thanks a lot for your reply! The picture is at its right place now, but for some reason, I can’t see it:

I’ve tried to play around with the size of the picture but that didn’t do the trick. Your help is much appreciated!

Did you upload the image logo-footer.png to your theme asset folder?

You need to go to your theme code, select Assets folder, click Add a new asset and upload the file.

1 Like

Thanks, that worked now!

Nice!

1 Like