Decreasing the width of the input column will make the label column wider:
```
jQuery("#"+this.questionId+" input[type=text]").parent().css("width", "50%");
```
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%");
});
```