How can I adjust the color of the product price using CSS code?

Hello

Can someone help with applying CSS code to modify the colour of the ‘product price’ on theme: Narrative?

What code file do I need to edit exactly?
What code to apply, with any example colour hex?

Thanks

1 Like

@Legend

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

@KetanKumar

Thanks

1 Like

@Legend

thanks for url yes please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.product__current-price {
    color: #fa4040; /* change color as you like */
}
1 Like

Hii, @Legend
Paste this code on top of the theme.scss file.

p.product__price {
    color: red !important;
}

You can change the color name as your choice.
Thank You.

2 Likes