Removing scale form slider questions | XM Community
Skip to main content
Solved

Removing scale form slider questions


Forum|alt.badge.img+2
Hi,

I would like to remove the numbers / scale form a slider question.

!

Could you please help me find what and where I should change in th CSS?

Thank you!,

Orna

Best answer by TomG

The CSS depends on whether it is Mobile Friendly or not. The following will hide it either way. Add it to the question text in html mode:
```
<style>
tr.xlabel {display:none;}
.JFEScope .Skin .q-slider ul.numbers {display:none;}
</style>
```
View original

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5902 replies
  • Answer
  • June 29, 2018
The CSS depends on whether it is Mobile Friendly or not. The following will hide it either way. Add it to the question text in html mode:
```
<style>
tr.xlabel {display:none;}
.JFEScope .Skin .q-slider ul.numbers {display:none;}
</style>
```

Thanks so much for this Tom I had been searching for this for ages.

Leave a Reply