Hi,
Star rating icons are created with icon font. That mean to replace those icons you need to change:
1. Font family in following CSS selector to your own custom font family (or any other icon font like Font Awesome)
.star-rating {
font-family: woodmart-font;
}
2. Change following Unicode for grey (empty) stars.
.star-rating:before {
content: "\f149" "\f149" "\f149" "\f149" "\f149";
}
3. Change following Unicode for yellow stars.
.star-rating span:before {
content: "\f148" "\f148" "\f148" "\f148" "\f148";
}
Best Regards