
Solved
Left-Align "Form" Text Entry Question

Hello- Is there custom code to be able to left align the text boxes in a "form" question? I don't want to include any text before the box and cannot figure out how to remove the extra space so it aligns with the beginning of the question. It correctly displays as follows:
!

Best answer by TomG
@bridget,
Add the following JavaScript to the question to hide the label column. You can still include labels for your own use since the respondent won't see them.
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" td:not(.ControlContainer)").hide();
});
```
The answer given by @akshay11749 won't save the responses into your survey data.
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.