What is the code to make the boxes around multiple choice questions white (rather than grey)? | XM Community
Solved

What is the code to make the boxes around multiple choice questions white (rather than grey)?

  • 28 June 2019
  • 6 replies
  • 140 views

Hello,

I am a qualtrics newbie and know nothing about code, but I wondered if anyone knew the code to make this possible?

Thanks!
icon

Best answer by ana_velez 28 June 2019, 17:14

View original

6 replies

Userlevel 6
Badge +27
Hi!!


is this what you are looking for?

!

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;
Yes, this is what I was looking for. However, it didn't work for me.
!
Userlevel 6
Badge +27
Which theme are you using?
Just a blank theme
Userlevel 6
Badge +27
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

!

Leave a Reply