Can I remove the sale badge from my website on my own?

Topic summary

A Shopify store owner wants to remove sale badges appearing on products that aren’t actually on sale. They previously used a theme from an e-commerce agency but have since unsubscribed from their services.

Solution provided:

  • Navigate to Shopify Admin → Online Store → Themes → Actions → Edit Code
  • Open the style.css file in the Assets folder
  • Add CSS code to hide the sale badge elements

Current status:
The initial CSS fix successfully removed badges from product pages, but sale banners still appear on the homepage/collection pages. A follow-up CSS snippet was provided to target additional sale badge elements across collection and product pages.

The discussion remains ongoing as the store owner implements the additional code to fully resolve the homepage display issue.

Summarized with AI on November 21. AI used: claude-sonnet-4-5-20250929.

Hello, we’re currently using a theme from an e-commerce digital agency, but we recently unsubscribe from their services, is the SALE BAGDE that appears on our website possible to remove without asking them? Here’s one of the items that appear on sale even if it’s not…

https://daisys-choice.com/products/bird-stand-stand-desktop-training-cockatiel-playground-bird-toy-swing-climbing-ladder-bird-gear-supplies

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >style.css and paste this at the bottom of the file:
.product-sale-sash {
display: none;
}

1 Like

Hello, Thanks for your reply it really works but in the front page it still shows the sale banner, see the video here.

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >style.css and paste this at the bottom of the file:
.product-sale-sash {
display: none;
}
.collection-product-sale-sash {
display: none;
}
.collection-product-sale-sash {
display: none;
}