How to change the fill color of multiple choice check boxes? | XM Community
Question

How to change the fill color of multiple choice check boxes?

  • 17 April 2019
  • 1 reply
  • 74 views

Hi! As of right now the check boxes for multiple choice questions in my survey are showing up very faint (see below). How can I make the check boxes darker?

Thank you!!

!

1 reply

Userlevel 4
Badge +5
Hi @mls148

Go to Look & Feel -->Style--> Custom CSS-->Click on 'edit' and add below code there. I have kept black(#000000) you can change as per your wish -

.Skin label.MultipleAnswer>span::before {border:2px solid #000000!important; }

.Skin label.SingleAnswer>span::before{border:2px solid #000000!important; }

.Skin label.MultipleAnswer.q-checked>span::before {border:2px solid #000000!important; background-color:#000000!important;}

.Skin label.SingleAnswer.q-checked.q-focused>span::before{border:2px solid #000000!important; background-color:#000000!important;}

Leave a Reply