How do I move a text entry box to the right of the label so it is on the same line? | XM Community
Skip to main content

Hello, I am writing text entry questions and I would like the text box field to be on the same line as the label. In other words, the label on the left and the text box on the right rather than below. I do not want to use a form. How do I do that?

Thanks!

Hi Mat,
Try pasting this CSS code in look & feel and change the px according to your need.

.QuestionBody {
 position:relative; 
left:-170px; 
top:-60px;
 width : 200px;
}


Leave a Reply