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

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

  • April 17, 2019
  • 1 reply
  • 182 views

Forum|alt.badge.img+1
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

Subu
Level 2 ●●
Forum|alt.badge.img+5
  • Level 2 ●●
  • April 18, 2019
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;}