Woocommerce Sale Price and Strike Through Color Change.
-
Hi, I’m trying to make an WCAG compliant store with Woodmart, have a small issue.
Need to change the text color of the Sale(regular price with strithrough) of woocommerce. Is there a way to target it via the theme?
If not what css to use?
I’m doing the following, it changes the color to my liking but the strike-through text decoration remains gray.
.price .woocommerce-Price-amount {
color: red !important;align-content
}
Thank you
Hello,
Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
.product-grid-item del .amount {
color: red;
}
.product-grid-item .price del {
color: black;
}
Best Regards.