How to change text and color on sale badge Symmetry theme

How can I change the color and text of the sale badge? Using the symmetry theme.

I would like to change the color to black and the text to: “sale”

@Rickyxane

How to Add This to Shopify Dawn Theme:

  1. Go to Shopify Admin → Online Store → Themes.
  2. Click “Customize” on your Dawn theme.
  3. In the theme editor, go to “Theme settings” (bottom left).
  4. Scroll down and click “Custom CSS”.
  5. Paste the above CSS code and save changes.

Alternative (Edit Theme CSS Directly):

  1. Go to “Online Store” → “Themes”.
  2. Click “Actions” → “Edit code”.
  3. Open base.css inside the assets folder.
  4. Paste the CSS at the bottom and Save.
.product-label>span {
    
    background: #5b5f46;
    color: #e3d8d7;
    
}

Hi @Rickyxane

Sorry for the confusion. Would you like the background to be black and the text color red or white?

Check 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:
span.product-label.product-label--sale span {
    background: black !important;
}
span.product-label.product-label--sale span {
    background: black !important;
    color: #c20000;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi @Rickyxane

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

span.product-label.product-label--sale span {
    background: #000 !important;
    color: #c20000;
}

Best

Daisy

Hi @Rickyxane

You can see the options to change color and text of the sale badge in your store admin > Sales channels > Online Store > Themes > Customize > Theme setting > Colors > Product overlay labels > Reduction text and Reduction background

![Screenshot 2025-03-12 at 10.59.23.png|1908x1768](upload://htFrhcG6vxaLjNNS2uhAt8bxgt8.jpeg)