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.
!
Page 1 / 1
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.
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.
> @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.
> 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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.