Here's my HTML:
<table>
<tr>
<td colspan="2">Name: <input type="text" name="member_name" style="width: 100%" /></td>
</tr>
<tr>
<td>Phone: <input type="text" name="phone" /></td>
<td>State:
<select name="state">
<option value="TX">Texas</option>
</select>
</td>
</tr>
</table>
Here it is on jsfiddle:
https://jsfiddle.net/ewdypuL8/
The problem is that the input field for the name is on its own line. I want it to fill the rest of the td - not all of the td.
Any ideas?