Question about formatting inside quickform: How to make radio buttons drop vertically inside a group? If I add radio elements one at a time, they're vertical, but if I want to add a rule it looks to the user like all the radio buttons are required. I like the group, but it's formatting horizontal for me.
$obj_group_type8[] = &HTML_QuickForm::createElement('radio', NULL, NULL, '1', '1');
$obj_group_type8[] = &HTML_QuickForm::createElement('radio', NULL, NULL, '2', '2');
$obj_group_type8[] = &HTML_QuickForm::createElement('radio', NULL, NULL, '3', '3');
$obj_group_type8[] = &HTML_QuickForm::createElement('radio', NULL, NULL, '4', '4');
$obj_group_type8[] = &HTML_QuickForm::createElement('radio', NULL, NULL, '5', '5');
$obj_registration_form->addGroup($obj_group_type8, 'organization', 'Organization:');