Help Please! Can't find a way to remove my old businesses logo in the footer

Re-purposed old store as I paid a lot for the Theme and layout so did not want to waste it.

Everything went to plan except I can not figure out a way to remove / replace my old businesses logo which seems to be embedded in the footer. I have no coding experience but can follow instructions to complete changes.

I’ve tried checking the footer section when editing the theme however I can’t see anything on the logo in there. Only if I remove all policies and other footer material will the logo disappear!

If anyone could help me out it would be hugely appreciated!

Hi @djpdan

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

Hello,

Yes of course, my URL is: https://ebike-distro.com/

Thank you

Thank you for the information. Try 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:
  • To Remove the logo.
.footer__block.grid__cell.\31 \/2--handheld.\31 \/3--lap.\31 \/4--desk:before {
    display: none;
}
  • To add the new logo, replace the href/url.
.footer__block.grid__cell.\31 \/2--handheld.\31 \/3--lap.\31 \/4--desk:nth-child(1):after {
    content: "URL: attr(href)";
}
  • I hope it help.
  • Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!