Modifying the shape of rating buttons
Modify the corners of buttons by adding/changing the property border-radius:
ZZpx where ZZ is a number indicating the pixel size of the border radius.
Make the buttons more rounded with a 10-pixel radius, which appears as follows:
To do this, edit the CSS file as follows:
.neb-rating-html-implementation neb-rating .neb-rating.numbers
label.rating-label,
.neb-rating-html-implementation neb-rating .neb-rating.numbersCircle
label.rating-label,
.neb-rating-html-implementation neb-rating .neb-rating-numbersSquare
.neb-rating-value label.rating-label{
Border-radius: 10px !important;
}