I have a Rank Order question that is in the text box format (see example below). Is there a way to make the items and their accompanying text boxes appear in two columns instead of one?
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .ChoiceStructure").css({"display":"grid","grid-template-columns":"repeat(2, 1fr)"});
});
Thank you TomG , that worked perfectly!
Is there a way I can either add more space between the two columns or increase the padding on the right side of the list items? I tried to do it myself but didn't have any luck:
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .li").css({"padding-right":"10px"});
})
https://community.qualtrics.com/XMcommunity/discussion/comment/53272#Comment_53272Use css grid properties. For example, the space between columns can be set using column-gap.
It won’t work with Simple layout. I’m not aware of any changes.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.