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
Question

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

  • May 29, 2021
  • 1 reply
  • 470 views

Forum|alt.badge.img

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

Harshal_
QPN Level 2 ●●
Forum|alt.badge.img+2
  • QPN Level 2 ●●
  • June 2, 2021

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;
}