Want to change the colour of 'sale' tag near the product price

I am using Sense theme and I want this small ‘Sale’ tag near the product price to be in 3e5ff9 and ‘sale’ text in white

My Store Link

1 Like

Hi @david09

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
span.badge.price__badge-sale.color-accent-2 {
    background: #3e5ff9;
    color: white;
}

Result:

I hope it help.