Solved
What is the code to make the boxes around multiple choice questions white (rather than grey)?
Hello,
I am a qualtrics newbie and know nothing about code, but I wondered if anyone knew the code to make this possible?
Thanks!
Best answer by ana_velez
Hi!
I tried with this one and worked for me
.Skin label.MultipleAnswer, .Skin label.MultipleAnswer.q-focused, .Skin label.SingleAnswer {
background: #ffffff !important;
}
Make sure you use all the code including the } , i think i missed it the last time
!

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

This is the code to change the boxes white while they are not selected
.Skin label.MultipleAnswer, .Skin label.MultipleAnswer.q-focused, .Skin label.SingleAnswer {
padding: 13px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
text-align: left;
background: #ffffff;
padding-right: 20px;