How can I increase the distance gap between choices in a multiple choice question? | XM Community
Skip to main content
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.

!
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");`
@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

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


Leave a Reply