Does anyone know how to center text-entry boxes? | XM Community
Solved

Does anyone know how to center text-entry boxes?

  • 14 December 2017
  • 3 replies
  • 750 views

Badge +3
Is there a way to make the text-entry boxes appear in the center of the screen rather than the left side?
icon

Best answer by AnthonyR 14 December 2017, 18:24

View original

3 replies

Userlevel 7
Badge +7
Assuming you are using a Text entry style question, add the following to the html of the question:

<style>
.ChoiceStructure {
text-align: center;
}
</style>

If you have multiple questions on the page and you only want to center this one, try adding the following Javascript to the Question:

Qualtrics.SurveyEngine.addOnReady(function()
{
this.questionContainer.select('.ChoiceStructure')[0].style = 'text-align: center;';
});
Badge +3
@AnthonyR The html worked perfectly! Thank you!
Userlevel 4
Badge +5
@AnthonyR - thanks for posting! All sorts of useful snippets for us Qubies 0_o

Leave a Reply