Aligning text entry forms | XM Community
Skip to main content
!



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
in html editor you can try adding text under nobr like

`<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%");

```
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%");

});

```

Leave a Reply