I am using yii framework for my development . I wrote CSS and able to align my tags in html properly and I am using the same CSS for yii and the align
add this css code somewhere (to the end of css/main.css, for example):
input[type=radio] + label, input[type=checkbox] + label { display:inline !important; }
<?php echo CHtml::radioButtonList('gender_code','',array('Male'=>'Male','Female'=>'Female'),array(
'labelOptions'=>array('style'=>'display:inline'), // add this code
'separator'=>'',
)); ?>
Looks like you might need
div#gender input
{
float:left;
}