How to change the fill color of multiple choice check boxes? | XM Community
Skip to main content
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!!



!
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