Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi @AA226
let add this custom css code to your theme settings:
.subfooter__copyright {
display: none;
}
Hi @AA226
In base.css add this code:
.subfooter__item--copyright {
display: none;
}
Hello @AA226
1. From your Shopify Admin, navigate to Online Store > Themes > Edit Code
2. In the Assets folder, open base.css and add your CSS code at the end
.subfooter__copyright {
display: none;
}
Hi @AA226
Please add this code to Custom CSS in Sales channels > Online Store > Themes > Customize > Theme settings
.subfooter__copyright:has(a[href="https://www.shopify.com?utm_campaign=poweredby&utm_medium=shopify&utm_source=onlinestore"]) { display: none !important; }
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Please add the following code at the bottom of your css file.
.subfooter__copyright a[href*="shopify"] {
display: none;
}
Hope this helps!
Hi @AA226 , Please follow these steps
.subfooter__item.subfooter__item--copyright .subfooter__copyright{
display:none !important;
}