
Solved
How do I get rid of Text Entry gap?
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 originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.