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

How do I move a text entry box to the right of the label so it is on the same line?

  • 29 May 2021
  • 1 reply
  • 232 views

Userlevel 1
Badge

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!


1 reply

Userlevel 1
Badge +2

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