Where can I change the style of the quantity of products?
-
How to change the red background here? (see the screenshot)
Attachments:
You must be
logged in to view attached files.
Hello,
Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
.woodmart-woocommerce-layered-nav .chosen .count {
background: orange;
}
Best Regards
thanks, but how to remove red background-color when item is NOT chosen (only hover)
Hello,
Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
.woodmart-woocommerce-layered-nav .layered-nav-link:hover+.count {
background: orange;
}
Best Regards
And how can I change the hover font style color here? (from black to red)
Attachments:
You must be
logged in to view attached files.
Hello,
Please try adding the following CSS for that.
.woodmart-woocommerce-layered-nav .layer-term-name:hover {
color: red;
}
Best Regards