How to remove Powered by Shopify in the Footer?

By default, Shopify will automatically add a "Powered by Shopify" link in the footer. We recommend you keep the link, as customers can immediately know that your store is using Shopify, and increase the trust in your store.

However, if you would prefer to remove any branding, you can follow those steps:

Step 1: Open the theme editor, click on Theme settings icon in the left corner, and open the Custom CSS panel:

Step 2: In the Custom CSS box, copy-paste the code below:

.hdt-copyright__content.hdt-hover-line a {
    display: none;
}

If the box already contains some code, add this code at the end.

Step 3: Click on Save.

If you want to hide the year as well, please add the code below:

.hdt-copyright__content a {
  font-size: 12px;
}
.hdt-copyright__content {
  font-size: 0px;
}