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