!
Hi,
How do I make the left side of the column a bit more wider so it is more readable? I've used text entry form for this (see attached picture)
Thanks
Page 1 / 1
in html editor you can try adding text under nobr like
`<nobr>TEXT</nobr>`
`<nobr>TEXT</nobr>`
Decreasing the width of the input column will make the label column wider:
```
jQuery("#"+this.questionId+" input[type=text]").parent().css("width", "50%");
```
```
jQuery("#"+this.questionId+" input[type=text]").parent().css("width", "50%");
```
Thanks for the code!
Where would I put the jQuery line of code at so this will work?
> @tristawhitehead said:
> Where would I put the jQuery line of code at so this will work?
Add JavaScript to the question and put it in the addOnload function:
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" input[type=text]").parent().css("width", "50%");
});
```
> Where would I put the jQuery line of code at so this will work?
Add JavaScript to the question and put it in the addOnload function:
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" input[type=text]").parent().css("width", "50%");
});
```
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.