Solved
Star Slider: place question above the stars
Hi,
I'm looking for a way to ask long questions in combination with a star slider.
Standard; the space for the text is very limited, so if you type a long question it appears on many lines.
I found this:
https://www.qualtrics.com/community/discussion/comment/3133#Comment_3133
that works great on desktop to combine long questions with the star slider;
however on mobile it becomes completely unusable.
So I thought, maybe a solution would be to make the question text appear above the stars, instead of next to them.
Is there a way to do that?
Thanks,
Joyca
Best answer by TomG
Try:
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" tr").each(function() {
var row = jQuery(this);
var th = row.before("<tr></tr>").find("th").attr("colspan","4").css("text-align","left");
row.prev("tr").append(th);
});
});
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.