How can I alter price color and box radius on my product page?

Hi community,

I want to change the new price to red.

And edit the border-radius of “final sale” box by 30px to look rounded.

https://ezclean.ga/products/kit

@djawedbhn add the code

From your Admin panel, click Online Store > Themes >Actions > Edit code
find and open the base.css file
Paste the code below at the very bottom of the file.

.price-item--sale{
color: red !important;
}
.price__badge-sale{
    border-radius: 20px !important;
}
1 Like

Thank you for this helpfull code