How to change the color of the review stars
-
Hi
It is not possible to change the color of the review stars on the shop page product grid because the custom css ist overwritten by the Java Script of the theme. If I debug the page and inactivate the related js then I see my css color, so it is overwritten by js.
Can you please advise me how to manipulate this color with custom js?
My css code is:
.star-rating span::before {
color: #e87706;
}
Thanks
Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.star-rating span:before {
color: #e87706 !important;
}
Regards