Question Styling: Checkbox
This article will show you how to format/style items within this specific question type
See the article following article if you have not added JavaScript and/or CSS to a question
- See article: Adding JavaScript and/or CSS to your Question
Vertically Align Checkboxes
Add the following code to the css for your question:
/* VERTICALLY ALIGN THE CHECKBOXES THEMSELVES */ .cm-response-direction-left .cm-checkbox-input-container, .cm-response-direction-left .cm-checkbox-label-container, .cm-response-direction-left .cm-checkbox-test-label-container, .cm-response-direction-right .cm-checkbox-input-container, .cm-response-direction-right .cm-checkbox-label-container, .cm-response-direction-right .cm-checkbox-test-label-container { display: inline-block; vertical-align: middle; height: 100% !important; } .cm-response-container.cm-response-direction-left, .cm-response-container.cm-response-direction-right { display: inherit; }