How can I remove the sale badge on Dawn theme without altering prices?

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.

shopkenshin.com

1 Like

Hey @shopkenshin

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. 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;
}

add below css into base.css file

.card__badge {
    display: none;
}

@shopkenshin