Left-Align "Form" Text Entry Question | XM Community
Skip to main content
Solved

Left-Align "Form" Text Entry Question


Forum|alt.badge.img+3
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 original

5 replies

Eesh
QPN Level 2 ●●
Forum|alt.badge.img+3
  • QPN Level 2 ●●
  • 67 replies
  • August 3, 2018
Hi, This white space can be removed using html code. Either of the code will work. Just add the code in the editor / css - " <td nowrap>Long Text Here</td>. If you are using a div or a span, you can use the style="white-space: nowrap;" .

Forum|alt.badge.img+1
  • QPN Level 2 ●●
  • 25 replies
  • August 3, 2018
You can use descriptive text for this question. After that select the html view and use input tag with type="text". I have attatched screenshot for better understanding. ! !

PeeyushBansal
Level 6 ●●●●●●
Forum|alt.badge.img+39
  • Level 6 ●●●●●●
  • 1144 replies
  • August 4, 2018
@akshay11749 will data appear for this question by creating boxes with HTML.

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • Answer
  • August 4, 2018
@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.

Forum|alt.badge.img+1
  • QPN Level 2 ●●
  • 25 replies
  • August 6, 2018
@bansalpeeyush29 no, but you can set embedded data with the values entered in text boxes using javascript.

Leave a Reply