Changing space between answer choices in Qualtrics

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-17 05:04:41

问题


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";
  });
}); 


来源:https://stackoverflow.com/questions/33310519/changing-space-between-answer-choices-in-qualtrics

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!