Solved
How do you change the slider handle/button image for a survey
All the look and feel options we have set the slider/handle to a circle which we wish to change to a pentagon shape with a pointer so it emulates a pen paper study. A slider handle having a pointer does give the participant a better visual scale to position the slider on the scale accurately.
As we wish to change this for all questions have tried coding in CSS and had some success in changing the circle to an ellipse and setting the colour to black using the following code:
Skin .horizontalbar .Slider .handle:hover{
width: 5px; /* Set a specific slider handle width */
height: 20px; /* Slider handle height */
background: #000000; /* Black background */
}
.Skin .horizontalbar .Slider .handle{
width: 5px; /* Set a specific slider handle width */
height: 20px; /* Slider handle height */
background: #000000; /* Black background */
}
The only problem with this code is that when the mouse hovers of the slider handle it shows as a circle so not sure what else we have to set in CSS so it always stays as an ellipse?
Ideally we look like to use a pentagon shape slider handle (rectangle with bottom edge replaced with point) that seems to be available in other Qualtrics surveys.
Appreciate any help on changing our slider handle so we can use a slider handle that has an image that has a pointer.
Best answer by mattyb513
Here is a working example: https://qualtricssfi.az1.qualtrics.com/jfe/preview/SV_6MgkafhhXVnBEDX?Q_SurveyVersionID=current&Q_CHL=preview
Here is the CSS:
```css
.Skin .SS .horizontalbar .handle, .Skin .SS .verticalbar .SSTrack .handle, .Skin .horizontalbar .BarContainer:hover .bar, .Skin .horizontalbar .Slider .handle, .Skin .horizontalbar .activated .bar {
background: #c32432;
background: url(https://clipart.info/images/ccovers/1495816049surprised-face-trump-png-transparent-clip-art.png) center center no-repeat;
background-size: contain;
height: 40px;
width: 30px;
}
.Skin .SS .horizontalbar .handle:hover, .Skin .horizontalbar .Slider .handle:hover {
background-color: transparent;
}
.Skin .horizontalbar table.sliderGrid {
margin-bottom: 15px; /* Only because my image was too tall */
}
```
Note that my image was tall so I had to add that last line to space out the bars. You can change the size of the image using the height and width in the first CSS declaration there. The image will always be the right ratio within the box you define.
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.