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”
How to Add This to Shopify Dawn Theme:
Alternative (Edit Theme CSS Directly):
.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.
span.product-label.product-label--sale span {
background: black !important;
}
And Save.
Result:
And if you like to add the font color check the code below.
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
