How to remove blue outline from response buttons | XM Community
Skip to main content

There’s a blue outline around the buttons after they are clicked/selected. Please see images. Does anyone have any suggestion or hint about how to remove that outline from the buttons? Not sure which CSS class/code dictates that line. 

 

try this -

jQuery(".Skin label.SingleAnswer").css("border","none")

or change the class and check if thats working.


.Skin label.MultipleAnswer.q-focused.q-checked,
.Skin label.SingleAnswer.q-focused.q-checked {
outline: none;
}

.q-focused class is the culprit here.


Thanks! We did a combo of those and it seems to be working: 

added this code depending on the question: 

jQuery(".Skin label.SingleAnswer").css("outline","none");

jQuery(".Skin label.MultipleAnswer").css("outline","none");

 


Leave a Reply