- Posts: 38
- Thank you received: 4
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
You don't need a script to achieve this.for initially hiding the handle
<style type="text/css"> /* Hide the tooltip */ .slider .tooltip { display:none !important; } /* Hide the handle initially */ .slider.slider-untouched .slider-handle { display: none; } /* Change the height of the track */ .slider.slider-horizontal .slider-track { height: 10px !important; } /* Change the appearance of the handle 1. adapt to the new height 2. change color 3. add a border */ .slider .slider-handle { background-color: blue !important; border: 2px solid red !important; top: 4px; } </style>
Please Log in to join the conversation.
Please Log in to join the conversation.