Forum Moderators: open
<table>
<tr>
<td class="labelcell"><label for "full name">Full Name:</label></td>
<td class="smallfieldcell"><input type="text" name="firstname" id="first name" tabindex="1" />
<input type="text" name="lastname" id="last name" tabindex="1" /></td>
</tr>
</table>
<td align="left" valign="middle">
If one still drops down a line, try using nowrap="nowrap" in the <td> tag.
HTH
To set them up, you'd do something like:
<label>Full Name</label><input name="fname" type="text"><input name="lname" type="text">
But as far as ID tags, each textbox, label, etc is its own element, therefore needs it own ID. e.g.:
<label id="nameLabel">Full Name</label><input name="fname" id="fName" type="text"><input name="lname" id="lName" type="text">
But like I said, you only need ID tags for javascript or CSS.