How do I change the color of the before price to red (Symmetry theme)

I need help changing the color of the before price, both in product grid and in product page. For some reason it is connected to base color, so when I change the base to red, the whole page with the variant picket becomes red. I only wanna change the price. Any one that can help?

Screenshot 2024-02-12 at 21.55.29.png

Screenshot 2024-02-12 at 21.55.18.png

1 Like

Hi @bysaleh123

Would you mind to share your store URL? Thanks!

1 Like

I would rather not share it here no

Oh, i understand. Just to clarify im not asking for admin URL. Its the only URL for the costumer/clients public url.

You could try overriding this with css.
In theme customizer go to the settings tab, then at the bottom add the below code into the css box.

If you haven’t already try it on a copy of the theme first.
You can change the colors to what every color or hex you need.
This code should change your Price to black and your compare at price (before price) to red.

span.price__current {
color: black !important;
}
span.price__was {
color: red;
}

ohh that worked thank you!