Here's how to fix it:
In your form style sheet (form.css), set:
input[type=radio] + label, input[type=checkbox] + label { display:inline !important; }that's it, you're done.
What it does is says anytime you have a radio button with a label element directly after it, make that label inline instead of block, meaning that there won't be a line break.
I would also recommend changing Yii's default checkbox label positioning to before the label.
I would also recommend changing Yii's default checkbox label positioning to before the label.