Hi Shopify Community,
Can someone please help me making the Compare-at price crossed price in red font? I think I would need to include some code but not sure where and what code.
Thanks a lot in advance
Hi Shopify Community,
Can someone please help me making the Compare-at price crossed price in red font? I think I would need to include some code but not sure where and what code.
Thanks a lot in advance
Hey @RK2024
Follow these Steps:
<style>
span.price-item.price-item--sale.price-item--last {
color: red !important;
}
</style>
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Hi @RK2024.
Thanks for your post, to solve your problem, you can try several solution :
Solution 1: Go to Online Store > Customize theme and add code in Custom CSS settings:
Code:
.price-item--sale.price-item--last {
color: red !important;
}
Demo and result:
Solution 2:
.price-item--sale.price-item--last {
color: red !important;
}
Or
<style>
.price-item--sale.price-item--last {
color: red !important;
}
</style>
Demo:
Thanks so much, that worked!
Regards
Thank you for your help!