How can I increase the distance gap between choices in a multiple choice question? | XM Community
Skip to main content
Question

How can I increase the distance gap between choices in a multiple choice question?

  • May 4, 2019
  • 3 replies
  • 242 views

Forum|alt.badge.img+1
I need to increase the gap between choices in a multiple choice question. The default version in Qualtrics show choices very close to one another and I need to increase the gap (attached screenshot). Thanks. !

3 replies

  • May 4, 2019
Hello @busmarketing , Select column (number=2) in MC option Paste the below code in the js(OnReady) of the MC question: `jQuery("#"+this.questionId+" .LabelContainer").css("display","block");`

Forum|alt.badge.img+1
@shashi Thank you. But the code squeezes the choice blocks, which I don't want. I just want an additional 2-3mm distance between blocks

  • April 21, 2020

We added this to the look and feel and it worked:

.Skin .MC label.SingleAnswer {
width: 150px;
height: 90px;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 70px;
padding-right: 70px;
margin: 0;
border: 0;
}
}