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! (:
Page 1 / 1
Qualtrics.SurveyEngine.addOnReady(function () {
let qc = this.questionContainer;
qc.querySelectorAll("Sclass*=Separator]").forEach((item) => item.hide());
qc.querySelectorAll("th").forEach((item) => (item.style.borderColor = "Transparent"));
qc.querySelectorAll("td").forEach((item) => (item.style.borderColor = "Transparent"));
});
That did it, thank you ahmedA!!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.