Hi, may I ask how I can make the sale prices red without any coding?
Hello @Chary2
Go to online store ----> themes ----> actions ----> edit code ---->assets ---->component-price.css ----> line number 92
search this code
.card-information > .price {
color: rgb(var(--color-foreground));
}
and replace with this code
.card-information > .price {
color: red !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
**Hi @Chary2 **
without any coding? Of course, it’s fine.
Step 1: Theme → Customize
Step 2: Choose Featured collection
Step 3: Add CSS and result
.price-item.price-item--sale {
color: red;
}
If it helps you, please like and mark it as the solution.
Best Regards




