How to remove the numbers under the stars in a slider question? | XM Community
Skip to main content
Question

How to remove the numbers under the stars in a slider question?

  • April 20, 2023
  • 1 reply
  • 479 views

Forum|alt.badge.img+2

I created a slider question using the Stars slider type. Qualtrics is showing a number under the first and last star (it does not appear when building, it  only appears when taking the survey or in preview mode). I would like to remove the numbers but cannot figure out how to. I tried using the code which I found on a similar post, but it did not work for me

jquery("ul.numbers").hide(); 

1 reply

Tom_1842
Level 8 ●●●●●●●●
Forum|alt.badge.img+28
  • Level 8 ●●●●●●●●
  • 876 replies
  • April 20, 2023

I think the numbers beneath the stars only display in Simple layout. To remove them, you can either change the survey’s layout or add the below CSS to the Style section of the survey’s Look & Feel:

.slider-min {
display: none;
}

.slider-max {
display: none;
}