This is the code,
function reservation_form(){
$form['option_city'] = array( '#type' => 'radios', '#title' => t('City'), '#description' => t('Select a method for deleting annotations.'), '#options' => array( t('City'), t('Address'), ), '#default_value' => variable_get('option_city', 0) // default to Never
);
return $form;
}
display the radio button as vertically,
But i want to display horizontally
what i do