Remove the "Powered by Shopify" Text
Shopify adds a small "Powered by Shopify" link in your footer by default. We generally recommend keeping it as a trust signal—customers instantly recognize the Shopify platform. Still, if you prefer a fully unbranded footer, you can hide it safely with a short CSS rule.
Steps
- Open the theme editor (Online Store → Themes → Customize).
- Click Theme settings (left sidebar gear icon).
- Open the Custom CSS panel.
- Scroll to the end (or below existing code) and paste the following:
css
a[rel="nofollow"][href*="shopify.com"] {
display: none;
}- Click Save.
Reverting
Remove the snippet above from Custom CSS and save— the link will appear again immediately.