- Posts: 6
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
You can use CSS to hide that checkbox as Denis does in some templates.I just wondered because the behavior in a radio list is if you click the radio-button it's activated and a lot of our participants don't get how it works.
.other-checkbox { visibility:hidden; }
.multiple-opt .other-checkbox { visibility: hidden; } .multiple-opt .checkbox label::before { display: none; }