Hello!
I would like to remove the borders in a side-by-side format question, so that it is clear to participants that they should enter a number in the text box and also select a time scale for recurring meetings.
If anyone could also provide any suggestions on how to remove the header space that is unneded and how to decrease the space between the columns, it would be greatly appreciated! (:
Solved
How do you remove the borders in a side-by-side question?
Best answer by ahmedA
Qualtrics.SurveyEngine.addOnReady(function () {
let qc = this.questionContainer;
qc.querySelectorAll("[class*=Separator]").forEach((item) => item.hide());
qc.querySelectorAll("th").forEach((item) => (item.style.borderColor = "Transparent"));
qc.querySelectorAll("td").forEach((item) => (item.style.borderColor = "Transparent"));
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
