Hi all,
I am trying to create a survey which accepts slider responses from 10 --> 0 --> 10 (with 0 being the neutral response in the middle).
The slider values cannot be directly edited to be positive in both directions, and they are currently set to range from -10 to 10 (image below).
This could be completed by hiding the minus signs, and a very helpful member of the community suggested using Javascript to complete this (https://www.qualtrics.com/community/discussion/1133/customizing-the-slider-bar) but my institution seems to have disabled Javascript for creating questions (I've requested access but haven't heard back yet).
Have tried using all sorts of CSS but don't think it's really the sort of thing that should be covered by changing the style.
I've tried using labels instead and hiding the numbers (via the below CSS), but they come out slightly offset compared to the slider (image below). Hidden text or changing the widths of each label in the list just makes it display very strangely and stretch beyond the screen width.
.Skin .q-slider ul.numbers {
display: none !important;
}
Question:
Does anybody know of any other ways (unlikely, but potentially using custom HTML or CSS, which are enabled) to hide the minus signs, or alternative ways to have the slider look like it's running from 10 --> 0 --> 10 ?
Any help would be much appreciated, as I'm a little stuck otherwise!