Hello Christine,
Thanks for writing to us.
is there a way to change the styling of the review stars in Woocommerce?
Yes, you can change the styling by using custom CSS code.
I want to change the outside color and the inside color.
To change the color you can use this custom CSS code under Theme Option —>CSS
.woocommerce-shop li.product .star-rating-container .star-rating span:before {
color: #43ad21;
}
.woocommerce-shop li.product .star-rating-container {
background-color: #cf0000;
}
.woocommerce.single-product p.stars span a {
background-color: rgb(255 0 0);
}
.woocommerce.single-product p.stars span a {
color: rgb(255 255 255);
}
How can I change the size of the stars?
You can add this custom CSS code to change the fonts
.woocommerce-shop .star-rating {
font-size: 2em;
}
The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector or you subscribe to One where customization questions are answered.
Hope it helps.
Thanks