Question Styling: Radio
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
Center the radio button vertically next to the choice:
Add the following to ADD CSS:
If you are not using groups:
.cm-radio-label-container { vertical-align: middle; line-height: 1em; }
If you are using groups:
.cm-response-group .cm-radio-input-container { vertical-align: middle; line-height: 1em; }
After:
Center Radio Button Horizontally
Add the following to the '+ CSS' field within your question.
/* Center Radio Button Horizontally */ .cm-radio-input-container { text-align: center; }