
I would like to change the sales price and the old price ie change the sizing I can not work out te selector

I would like to change the sales price and the old price ie change the sizing I can not work out te selector
Hey @wicara,
Here are the selectors and sample CSS
.woocommerce .price>del .woocommerce-Price-amount {
color:red
}
.woocommerce .price>ins .woocommerce-Price-amount {
color:blue
}

Hope that helps.
hello I can not seem to change the font size this way for the blue selector
Hi @wicara,
We can make your selector more specific:
.woocommerce li.product .entry-header .price>ins>.amount {
color: blue;
font-size: 160%;
}
Or we can also add !important statement to the font-size
.woocommerce .price>ins .woocommerce-Price-amount {
color:blue;
font-size: 160% !important;
}
Either of that should work,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.