Hi,
I am trying to build a custom form that has a section that is 3 columns of radio or check boxes.
Here is a link to 3 column table with text boxes, is it possible to do this with the radio/check boxes
http://173.199.181.132/~hilker/index.php/open-an-account
HTML CODE
I am trying to build a custom form that has a section that is 3 columns of radio or check boxes.
Here is a link to 3 column table with text boxes, is it possible to do this with the radio/check boxes
http://173.199.181.132/~hilker/index.php/open-an-account
HTML CODE
<div style="float:left; clear:none;">
<table width="100%" border="0" cellpadding="1">
<tr>
<td><input type="radio" name="location" id="location_0" title="" value="Mini City" class="" />
<label for="location_0">Mini City</label>
<input type="radio" name="location" id="location_1" title="" value="Leesville Rd" class="" />
<label for="location_1">Leesville Rd</label>
<input type="radio" name="location" id="location_2" title="" value="Stonehenge" class="" />
<label for="location_2">Stonehenge</label>
<input type="radio" name="location" id="location_3" title="" value="Sutton Square" class="" />
<label for="location_3">Sutton Square</label>
<input type="radio" name="location" id="location_4" title="" value="Baily Ridge" class="" />
<label for="location_4">Baily Ridge</label></td>
<td><input type="radio" name="location" id="location_0" title="" value="Mini City" class="" />
<label for="location_0">Mini City</label>
<input type="radio" name="location" id="location_1" title="" value="Leesville Rd" class="" />
<label for="location_1">Leesville Rd</label>
<input type="radio" name="location" id="location_2" title="" value="Stonehenge" class="" />
<label for="location_2">Stonehenge</label>
<input type="radio" name="location" id="location_3" title="" value="Sutton Square" class="" />
<label for="location_3">Sutton Square</label>
<input type="radio" name="location" id="location_4" title="" value="Baily Ridge" class="" />
<label for="location_4">Baily Ridge</label></td>
<td><input type="radio" name="location" id="location_0" title="" value="Mini City" class="" />
<label for="location_0">Mini City</label>
<input type="radio" name="location" id="location_1" title="" value="Leesville Rd" class="" />
<label for="location_1">Leesville Rd</label>
<input type="radio" name="location" id="location_2" title="" value="Stonehenge" class="" />
<label for="location_2">Stonehenge</label>
<input type="radio" name="location" id="location_3" title="" value="Sutton Square" class="" />
<label for="location_3">Sutton Square</label>
<input type="radio" name="location" id="location_4" title="" value="Baily Ridge" class="" />
<label for="location_4">Baily Ridge</label></td>
</tr>
</table>
</div>