Goal: change product review star color on collection/featured product grids (Shopify Crave, OS 2.0) to yellow.
What worked:
Adding CSS in assets/component-rating.css for .rating-star::before with -webkit-text-fill-color: rgb(255,164,28) changed stars to yellow on collection pages.
To remove the β5.0/5.0β text, hide p.rating-text.caption via CSS (display: none).
Layout fix:
The rating count dropped to a new line; keeping p.rating-count.caption as display: inline-block helped, but the key fix was correcting syntax errors in component-rating.css (removing an extra closing brace in .rating-star::before and fixing βinline- blockβ spacing). After cleanup, alignment worked.
Alternatives/notes:
Another suggestion set background: #FFA41C on .rating-star::before. Code snippets were central to the solution; screenshots showed before/after visuals.
Open questions (unresolved):
Hiding stars when there are 0 reviews is not feasible with CSS alone (no unique selector; would also hide valid reviews).
A user reported all items showing 5 stars after applying code; no fix posted.
Request to show blank stars for 0.0 rating remains unanswered.
I have already managed to edit the color of product rating stars in the main product page, but unable to change the color in Collections. The theme Iβm using is Crave (i believe is Online Store 2.0).
Can anyone help me change the color to yellow in Collection?