Is it possible to remove the value of an input slider from a form?
-
jonmpAsked on September 16, 2013 at 04:04 AM
Sliders are really useful to me as I want people to send me data that should not be precise (just an impression along a line). So it would be really useful to be able to remove the numeric display on a slider.
-
WelvinAnswered on September 16, 2013 at 06:32 AMJotform Support
Hi,
Would you like to remove all the numbers including the TOTAL value in the middle part of the slider?
To remove just the TOTAL value, inject this custom CSS codes to your form:
td + td {
visibility: hidden;
}
td +td + td {
visibility: visible !important;
}
To remove all the numbers including the total value, inject this custom CSS codes to your form:
tbody > tr + tr {
display: none;
}
Here's the guide on how inject a custom CSS codes to the form: How to Inject Custom CSS Codes. Let us know if you need any further assistance.
Thanks
-
WelvinAnswered on September 16, 2013 at 09:23 AMJotform Support
For some reason, your last response came out empty here in our Support Forum. Please kindly respond by accessing this thread: http://www.jotform.com/answers/268437
Thanks
-
jonmpAnswered on September 16, 2013 at 09:59 AM
(I "replied" to the email).
All I said was:
Thanks Welvin - brilliant!
Cheers...Jon