Adjusting slider values | XM Community
Solved

Adjusting slider values

  • 4 September 2018
  • 2 replies
  • 8 views

Badge +2
Hello,

I am hoping to create the following slider, but realized that Qualtrics do not actually allow for the integration of ,000 to the values of the slider.

!

There was a similar thread about this, and I was able to get the ,000 on all the values with the css code provided:

<style>
ul.numbers li::after {
content:",000";
}
</style>

however, I am wondering whether there is a workaround (to the css code above, or a new code altogether) that will allow me to display the mid-point as 0; instead of 0,000?

Thank you!
icon

Best answer by Anonymous 4 September 2018, 05:28

View original

2 replies

Hello @Estha ,

Paste the following code in "look and feel" -> "Advanced" -> "Add custom css"

ul.numbers li::after { content:",000"; }
ul.numbers li:nth-child(4):after { content:""; }

Now, with respect to the position of the Zero in your slider change the number in the nth-child in the above code
Badge +2
@Shashi

Thank you!

Leave a Reply