hi
@jaegtiz
As you want your slider to appear like a normal slider for one question and customized for other i would suggest you rather use this code :
`var q = jQuery("#"+this.questionId);
q.find(".handle").css('visibility', 'hidden');
q.find(".track").on("click", function() {
jQuery(this).find(".handle").css('visibility', 'visible');
});`
for the question you need the slider hidden until the track is clicked.
And for the other you just have a normal slider question.
with this custom CSS , you were applying this css to all question that have a class handle (like the slider question)
`.handle{
visibility:hidden;
}`
so a custom js code specific to the question would be better.