Hi Guys,
Thanks for all the support, really love this theme.
Can you tell me how to edit the prices and sale icons for Woocommerce in Enfold?
I want to make the regular price black
The sale price red
And the actual ‘Sale’ icon red also.
Thanks so much in advance
Sure –
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#top .main_color .onsale { background-color: red; }
del .amount { color: black; }
ins .amount { color: red; }
Cheers!
Yigit
Thanks, this works :)
However, is there a way to set it so it doesn’t effect the prices in the footer widgets area also? I would prefer them to be the standard colors.
Hey!
Please change the code to following one
#top .main_color .onsale { background-color: red; }
.entry-summary del .amount { color: black; }
.entry-summary ins .amount { color: red; }
Regards,
Yigit
Thank you very much Sir.