I know I can adjust the look and feel settings, but this is very limiting. Is there any way to choose the radio button size/color using CSS or JavaScript?
Thank you
Solved
Is there a way to increase the radio button size of mulitple choice questions?
Best answer by tbutler
Try out this CSS:
input[type="radio"] {
-ms-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
View originalinput[type="radio"] {
-ms-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.