Hi Everyone!
Here is a screenshot of what I'm working with. I would like to adjust the width of the question options. I have tried the HTML
Hi,
this should do the magic :
Qualtrics.SurveyEngine.addOnload(function()
{
let labels =document.getElementsByClassName("LabelWrapper")
for(let i=0;i
}
});
Adopt the width according to your liking/needs.
Best regards
Rudi
Hi Rudi,
I’m trying to make the same adjustment as elowey, but when I try using the code you suggest, I get the error “unexpected identifier”.
I don’t know Java at all, so I’m really just copying and pasting. Any suggestions?
Best,
Zak
The code provided was not complete. It should be like:
Qualtrics.SurveyEngine.addOnload(function()
{
let labels =document.getElementsByClassName("LabelWrapper")
for(let i=0;i < labels.length;i++) { labelssi].parentElement.style.width = "60%"
}
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.