i cant find the base.css, i wanna change color of product and compare price.
this is my link https://www.william-project.com/
i cant find the base.css, i wanna change color of product and compare price.
this is my link https://www.william-project.com/
should i try the 3 .css ?
in your theme there is a file called styles.css
you can add the following css and change the color to your preferred one
span.was-price.theme-money {
color: red;
}
great! it worked but i wanna put red on the price not the compared price
If it’s help please mark my answer as a solution ![]()
.product-block.cc-product-block.on-sale span.theme-money {
color: red;
}
Change the code of my first message to:
span.was-price.theme-money {
color: #000;
}
exactly
it didnt worked, is still red both
replace #000; with #000 !important;
try with this one:
span.was-price.theme-money {
color: pink;
}
no, it didtn worked, can you help me with the complete code please ? just to put red and black please
span.was-price.theme-money { color: #000 !important; }
@williamproject it’s working on your website, please mark my answers as a solution ![]()