Jul 13, 2020 6:18 pm
Can someone assist me with the CSS for changing the size of the circle rating / star rating?
Please see the pdf attachment for more details.
Thanks!
7 Replies
Jul 15, 2020 7:51 am
Hi @george-l,
Use this CSS code:
#wpd-post-rating .wpd-rating-wrap .wpd-rating-value {
width: 45px;
height: 45px;
display: flex;
flex-direction: column;
justify-content: center;
}
#wpd-post-rating .wpd-rating-wrap .wpd-rating-value:hover .wpdrc{
display:none !important;
}
#wpd-post-rating .wpd-rating-wrap .wpd-rating-value .wpdrv {
font-size: 15px !important;
}
Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.
Note: The red marked values can be changed as you like.Â
Please don't forget to press Ctrl+F5 (twice) on the frontend before checking.

