All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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?
Solved! Go to the solution
This is an accepted solution.
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;
}
Hi @bysaleh123
Would you mind to share your store URL? Thanks!
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.
This is an accepted solution.
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!