My question relates to visual formatting. Basically I would like to know how to visually separate answer choices within an item in Qualtrics.
Thus far I have tried to add an item and suppress the visibility of the text but that doesn't work, in that the text is not visible but the choice and its corresponding background color still exists. I have also tried to add padding and line breaks between the choices and that is not working either.
I know there is away to format the spacing between all of the choices (Changing space between answer choices in Qualtrics) but I cannot find out how to do it individually.
This is currently what I have:
And this is what I would like to achieve:
Any help would be greatly appreciated. Thank you!
Update: Here is what i have tried this far:
Hello,
I have tried dealing with the visibility of the text which obviously did not work:
<style>
p.hidden
{visibility:
hidden
}
</style>
<p class=hidden>text</p>
I've also attempted to add line breaks after and before items just for spacing and that was a no go either. I'm sure this is something simple, but I am at a loss. Thanks for any help.
You can use the nth-child pseudo selector. Add the following to your question text (it will apply to all questions on the page) to add space before the 5th choice:
<style>
ul li:nth-child(5) {
margin-top: 20px;
}
</style>