I want to remove the sale badge on my home page, collection page, and product pages. I want to remove the badge without removing the strike through price. I am using Dawn theme.
1 Like
Hey @shopkenshin
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above tag.
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset → base.css and paste this at the bottom of the file:
.card__badge.bottom.left {
display: none;
}
.badge.price__badge-sale.color-accent-2 {
display: none;
}