I just bought Focal theme on shopify and I need help to remove the powered by Shopify in the footer. I also want to remove the small grey square. And I want another text. Anyone who can tell me what coe to insert in the footer liquid?
Thank you:-)
I just bought Focal theme on shopify and I need help to remove the powered by Shopify in the footer. I also want to remove the small grey square. And I want another text. Anyone who can tell me what coe to insert in the footer liquid?
Thank you:-)
Solved this by this video How to Remove Powered by Shopify from Footer
.. but still need help to remove small grey square and center the text on the site
Hello @Katt11 ,
Edit section, section → footer.liquid
Here search for class footer__copyright
Inside this element you can find the existing dynamic copyright content.
And you need to delete this html
to remove the square.
If problem solved don’t forget to Like it and Mark it as Solution!
And if you need help with customization/code part you can contact me for services
You can find the email in the signature below.
Thanks
HI @Katt11
Here is the solution
span.footer__copyright.text--xsmall.text--subdued {
display: none;
}
add this css on footer.css or theme.css at the very bottom of the file
if the solution is really work for you please mark it as acceptable solution
Thanks and regards
Hi, @Katt11
Go to your Shopify admin panel.
Navigate to Online Store > Themes > Customize > Edit Code.
Locate the footer.liquid file or the equivalent file (sometimes it’s within sections or snippets).
Use Ctrl+F (Windows) or Cmd+F (Mac) to search for “Powered by Shopify.”
Delete the line or comment it out by wrapping it in {% comment %} … {% endcomment %}.
To replace it, add your custom text within the relevant
tag.
- Look for a div or span in the footer section that may represent the square.
- If it's styled in the footer.liquid or an associated CSS file, delete or modify it.
Add Custom CSS to Hide It (if unsure):
.footer-class-name {
display: none;
}
Replace .footer-class-name with the appropriate class or ID identified via your browser’s developer tools.
Locate the CSS or HTML generating the grey square:
Add Custom CSS to Hide It (if unsure):
.footer-class-name {
display: none;
}