Changing space between answer choices in Qualtrics

2019-08-19 04:42发布

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?

标签: css qualtrics
1条回答
beautiful°
2楼-- · 2019-08-19 05:21

You can change the padding on the labels:

Qualtrics.SurveyEngine.addOnload(function() {
  $(this.questionId).select('label').each(function(name) {
    name.style.padding = "10px";
  });
}); 
查看更多
登录 后发表回答