- Posts: 23
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
In the advanced question settings, you can define a CSS class for the questions. Let's say "my-slider-question" for the sliders and "my-text-question" for the long-texts.
Then in template.css, you can apply styles to the questions something like this. It should place them side-by-side.
.my-slider-question {
float: left;
width: 32%;
margin-right: 2%;
clear: left;
}
.my-text-question {
float: left;
width: 65%;
}