How to change the style of a scale-style single choice question? | XM Community
Skip to main content
Solved

How to change the style of a scale-style single choice question?

  • November 8, 2024
  • 2 replies
  • 57 views

Forum|alt.badge.img+1

Hi all,

 

I want to add a satisfaction rating question to my survey and it needs to be 10pt scale, not 11 point so I can use the pre-designed NPS question as it is not editable.

 

My issue is that the buttons have this border on them, which I want to remove. What is the best way to do this?

 

 

Thanks in advance

Best answer by Shashi

Assuming this is using Modern layout, we can use below JS to hide the boder:

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

Alternative way is to use this script from @TomG to change NPS question from 11 point scale to 10 point scale.

View original

2 replies

Shashi
Level 8 ●●●●●●●●
Forum|alt.badge.img+32
  • Level 8 ●●●●●●●●
  • 633 replies
  • Answer
  • November 10, 2024

Assuming this is using Modern layout, we can use below JS to hide the boder:

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

Alternative way is to use this script from @TomG to change NPS question from 11 point scale to 10 point scale.


Forum|alt.badge.img+1
  • Author
  • 3 replies
  • November 11, 2024

Thank you, that worked perfectly :)