Question text and drop list in the same line | XM Community
Skip to main content

How can I bring the drop list in the same line as question text?

 

One of the easiest way is to use matrix question with drop down and hide question text. OR we can use below script in muti choice drop down question to make both in same line:

jQuery("#"+this.questionId+" fieldset").css({"display":"flex","align-items":"center"});
jQuery("#"+this.questionId+" legend").css({"display":"contents"});

 


Leave a Reply