How do I get rid of Text Entry gap? | XM Community
Skip to main content
Solved

How do I get rid of Text Entry gap?

  • February 13, 2020
  • 2 replies
  • 98 views

I am designing a survey and when I use the Text Entry question with the Form option, there is a large gap between the field box and the text entry box. How would I go about removing the gap? Included is a screenshot. Appreciate the help. !

Best answer by TJUH_Kai

if you want to only apply the style to this question: 1. Use Add JavaScript Qualtrics.SurveyEngine.addOnReady(function() { jQuery(".Skin .TE td.ControlContainer").css({"width":"95%"}) }); 2. If you want to get rid of space for all the Text Entry Question, then Look and Feel > Style > Custom CSS . Skin .TE td.ControlContainer { width: 95% } change the width percentage to adjust the desired space, the bigger the width, the less space between text and input.
View original

2 replies

Forum|alt.badge.img+2
  • Level 2 ●●
  • 99 replies
  • Answer
  • February 14, 2020
if you want to only apply the style to this question: 1. Use Add JavaScript Qualtrics.SurveyEngine.addOnReady(function() { jQuery(".Skin .TE td.ControlContainer").css({"width":"95%"}) }); 2. If you want to get rid of space for all the Text Entry Question, then Look and Feel > Style > Custom CSS . Skin .TE td.ControlContainer { width: 95% } change the width percentage to adjust the desired space, the bigger the width, the less space between text and input.

  • Author
  • 1 reply
  • February 18, 2020
> @TJUH_Kai said: > if you want to only apply the style to this question: > 1. Use Add JavaScript > > Qualtrics.SurveyEngine.addOnReady(function() > { > jQuery(".Skin .TE td.ControlContainer").css({"width":"95%"}) > }); > > 2. If you want to get rid of space for all the Text Entry Question, then > Look and Feel > Style > Custom CSS > > . Skin .TE td.ControlContainer { > width: 95% > } > > change the width percentage to adjust the desired space, the bigger the width, the less space between text and input. Thank you! This solved the issue. I appreciate the help.

Leave a Reply