You can do this with some custom CSS in your theme.
1. To change the star size in each review:
.glsr-review .glsr-star {
background-size: 32px !important;
height: 32px !important;
width: 32px !important;
}
2. To change the star size in the summary:
.glsr-summary .glsr-star {
background-size: 32px !important;
height: 32px !important;
width: 32px !important;
}
And to center-align the summary stars with the rating:
.glsr-summary {
align-items: center;
display: flex;
flex-wrap: wrap;
max-width: none !important;
}
3. To change the star size in the submission form:
.glsr-form .gl-star-rating-stars > span {
background-size: 32px !important;
height: 32px !important;
width: 32px !important;
}
Tip: Remember to run any custom CSS through https://autoprefixer.github.io/ first to make sure you are including browser prefixes to support older browsers.
-
This reply was modified 9 months, 2 weeks ago by
Gemini Labs.