Home Forums Basel support forum How to change the color of the review stars

How to change the color of the review stars

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #20465

    criadura
    Participant

    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

    #20483

    Bogdan Donovan
    Keymaster

    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

Viewing 2 posts - 1 through 2 (of 2 total)