How do I create two columns to have short questions next to each other for a survey form? | XM Community
Question

How do I create two columns to have short questions next to each other for a survey form?


Userlevel 1
Badge +2
  • Level 1 ●
  • 1 reply

Demographic information question and answers are usually short (Name, Age). I would like to put like two of the questions next to each other instead of one occupying an entire row/line. 

Thanks in advance. 


3 replies

Userlevel 6
Badge +27

We can use SBS or Matrix text entry question for this.

Userlevel 5
Badge +11

The solution is already shown by @Tom_1842 

 

Userlevel 7
Badge +33

You can use either side by side setup or you can create it using multiple choice questions.

 

Just replace question on below code. Make sure to use each question’s section tag (html tag mentioned in below screenshot) ID.

 

Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery("#question-QID1").css({"width": "200px !important", "float":"left"});
jQuery("#question-QID2").css({"width": "200px !important", "float":"left"});
});

 

 

Leave a Reply