
Solved
Move Slider Labels below "Choices"
Hi folks,
Hoping to get some help moving the label text below the slider bar as in the screenshot below.
I've had a look at a couple of the existing questions but they don't seem to work. For e.g., on this one: https://www.qualtrics.com/community/discussion/2326/a-way-to-change-the-position-of-the-labels-in-a-slider-question
With the one above, the labels just disappear.
!

Best answer by fmoosvi
It turns out the above wasn't working because I had multiple slider qs on the same page.
Coworker helped me figure it out, here's the code that works. It needs to be on just one slider per page:
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("ul.labels").insertAfter("div.slider-container");
jQuery("ul.labels").css('font-weight', '700');
});
Problem is solved thanks
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.



The ul.labels got inserted multiple times.
