How to change the color of a non-sale price on a debutify product page?

Hi,

Would appreciate some help changing the colour of the non-sale price on my product page.

What is the code for this?

Many thanks

Theme is debutify, pawcopets.co.uk/calming-pet-bed

Hi @thomasmrgn99

For the non-sale price you mean the non-scratched price?

If yes, please use the following code below:

span#ProductPrice {
    color: red;
}

Change the color to hex value of your choice! Should that be all, we always appreciate a like & mark as answer to let the community find quality answers faster. Thanks!

1 Like

Thanks @JHKCreate I meant the pre-sale price that IS crossed out, is that the right code?

Thanks!

Use this code instead:

span#ComparePrice
{
color:red;
}

That should do it! Do let me know

1 Like

Thank you sir. @JHKCreate