Different colour product price for better conversion

Dear team Shopify,

How can i adjust the price on this product? If i change the colour of the text (in the theme), then all the text will change. Instead of just the price.

How can i adjust only colour of the price?

URL: https://sachachique.com/

Gratitude in advance!

Kind regards,

KC

Hi @KeDC16

You can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.

.card-information .price { color : #00b67a !important; }

Hello @KeDC16
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-card.css -----> line number 478
search this code

.card-information > .price {
  color: rgb(var(--color-foreground));
}

and replace with this code.

.card-information>.price {
    color: red !important;
}

adn the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

Perfect Dan, thank you. It worked!