CSS for Expanding Character Limit in Labels

CSS for Expanding Character Limit in Labels

This CSS enables customizable labeling by extending the character limit in NPS.

Code :

.ss-answer-option--rating label {
font-size: 0;
}
.ss-answer-option--rating label::after {
content: "UPDATED TEXT FOR LEFT LABEL";
font-size: 16px;
}
.ss-answer-option--rating label.ss-answer-option__label--max-label::after {
content: "UPDATED TEXT FOR RIGHT LABEL";
}

Kindly replace the placeholder text "UPDATED TEXT FOR LEFT LABEL" and "UPDATED TEXT FOR RIGHT LABEL" with the desired text for the left and right labels, respectively.