How can i remove the powered by shopify.
Topic summary
A user asks how to remove the “Powered by Shopify” text from their store footer in Dawn theme version 12.0.0.
Solution provided:
- Navigate to Online Store → Themes → Actions → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the following CSS code at the bottom:
a[target="_blank"][rel="nofollow"] {
display: none;
}
- Save the changes
Outcome:
Multiple users confirmed the solution works successfully. The discussion is resolved with a working CSS-based method to hide the footer branding.
Hi @mobsdogs
Check 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:
a[target="_blank"][rel="nofollow"] {
display: none;
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you
Welcome, please dont forget to hit likes as well thanks!
Hey man, can you please take a look to my new question on my account? I think you would solve that easily.
Appreciate it!
Thanks, worked for me too
thanks, it works!!!

