BackSnap and stars color

Please tell me how to change the color of the stars on the page? Stars of the same color with the user name and the inscription “Average Rating”, and I would like to make them different colors.

P.S. The color changes if change these values, through the inspector in the browser, but if you write this in the RapidWeaver itself in the CSS tab, nothing changes.

.stars {
color: #FF8B00;
}

.user-rating {
color: #FF8B00;
}

You could try adding !important, like:

.stars {
color: #FF8B00 !important;
}

It would be helpful to have a URL of the published page to help with your problem.

1 Like

I tried to write this way, but there is no result.
On the page itself, the code is registered, but it does not work.

W/O URL hard to say for sure but looking at the BackSnap live preview try this:

.icon-star:before {
   color: #FF8B00;
}

Thank you for reply, but not working. Page.

Don’t see on the published page the changes (CSS overrides).

Looks like I left out one of the :: above,
try this:

i.icon-star::before {
 color: #FF8B00;
}

Thanks for the advice, but still not working. Only works if you add those two lines to the file comments.css. But this is not a solution, as in the program easier and faster.