- Posts: 10216
- Thank you received: 3635
Ask the community, share ideas, and connect with other LimeSurvey users!
Is the column-count property intended for separate elements (<li> elements)?Maybe check with this solution : github.com/LimeSurvey/LimeSurvey/pull/3038
(i mean : adding a new class and deactivate the core solution)
Please Log in to join the conversation.
Please Log in to join the conversation.
<style type="text/css" data-author="Tony Partner"> #question{QID} .ls-answers ul { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 0 1rem; } @media (max-width: 768px) { #question{QID} .ls-answers ul { grid-template-columns: repeat(2, 1fr); grid-gap: 0 0.5rem; } #question{QID} .form-group { margin-bottom: 0; } } </style>
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.