Changing space between answer choices in Qualtrics

2019-08-19 05:25发布

问题:

I am using a new "skin" in Qualtrics where answer choices have a label wrapper, and there are no check boxes. Respondents actually click on the answer choice itself. Is there a way to reduce the size of the label wrapper so that the answer choices are closer together and the question is not so long vertically?

回答1:

You can change the padding on the labels:

Qualtrics.SurveyEngine.addOnload(function() {
  $(this.questionId).select('label').each(function(name) {
    name.style.padding = "10px";
  });
}); 


标签: css qualtrics