I wouldn't recommend removing the single space that sits between the question and answers. You'll want it for question legibility/readability for your users.
.Skin .QuestionText {
padding: 0 0 0px;
}
`jQuery("#"+this.questionId).find('.QuestionText:first').css("padding-bottom", "0px");`
> You can remove the space between the bottom of the Question Text and the first choice like this:
> `jQuery("#"+this.questionId).find('.QuestionText:first').css("padding-bottom", "0px");`
@TomG - would you be able to provide an image example?
Here is an image:
!
And the entire JavaScript where this.questionId is the ID of the current question:
!
https://www.qualtrics.com/community/discussion/comment/1117#Comment_1117Thanks!
How do I get this to work with the other script for removing the space between slider and choice options?
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#"+this.questionId+" ul.labels").insertAfter("#"+this.questionId+" div.slider-container");
jQuery("ul.labels").css('font-weight', '700');
});
https://www.qualtrics.com/community/discussion/comment/30596#Comment_30596You can combine them in the same function:
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#"+this.questionId+" .QuestionText").css("padding-bottom", "0px");
jQuery("#"+this.questionId+" ul.labels").insertAfter("#"+this.questionId+" div.slider-container");
jQuery("ul.labels").css('font-weight', '700');
});
Please how can increase the space between questions in Qualtrics. Thank you
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.