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

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(); 

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;
}

 


Leave a Reply