I am trying to create a scale question where I can vary the spacing between choices, and could use help with custom coding. In this case, I want a 7 point scale to be vertically oriented, so I am using a "Multiple Choice - Single Answer, Vertical" question format. Can you help, please?
So far, I am using this bit of Custom Code, which I am applying in the "Edit Question JavaScript" function:
!

Here it is in text format:
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery(".LabelWrapper").css({"margin":"0 auto 100px auto"})
});
However, that code applies the same spacing (in this case, 100 px) between all of the choices. I want to be able to vary the spacing _between_ choices. This is approximately what I would like:
Between Choices 1 and 2 - 60 px
Between Choices 2 and 3 - 30 px
Between Choices 3 and 4 - 10 px
Between Choices 4 and 5 - 10 px
Between Choices 5 and 6 - 30 px
Between Choices 6 and 7 - 60 px
If anyone could help with the coding, I would greatly appreciate it!