Customize Grid Line Values for Slider-Type Questions | XM Community
Skip to main content
I am looking for a way, likely code, that allows me to adjust the size of the numbers underneath the grid lines in slider questions.

By default, they are rather small, so I am trying to increase the size.

Any help is greatly appreciated!
If you are referring to a regular slider with mobile friendly checked, then this will work:
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" ul.numbers li").css("font-size","larger");
});
```

Leave a Reply