I have just created a form on one of my pages that you can see here: http://www.primarycarecommunity.net/beamentor/
but as you can see, the radio buttons and the text area description are out of line to the rest of the form.
I do have a little bit in my css for inputs and labels:
#left form {margin-left: 50px; }
#left input {margin-right: 20px; margin-bottom: 15px; padding: 3px;}
#left label {width: 7em;}
But what would I put in the css to bring my radio buttons and the text area description in to line, the html for the radio buttons is follows:
<li id='field_6_5' class='gfield gfield_contains_required' >
<label class='gfield_label'>GMS/PMS Practice<span class='gfield_required'>*</span></label>
<div class='ginput_container'>
<ul class='gfield_radio' id='input_6_5'>
<li class='gchoice_5_0'>
<input name='input_5' type='radio' value='GMS' id='choice_5_0' tabindex='5' />
<label for='choice_5_0'>GMS</label></li>
<li class='gchoice_5_1'>
<input name='input_5' type='radio' value='PMS' id='choice_5_1' tabindex='6' />
<label for='choice_5_1'>PMS</label></li>
</ul></div></li>