OldSchoolChris said: If you re simply wanting to understand how to the change the width of the table in your linked example, just change: table width="400" to table width="500" then click "See Results>" at the top and see the results of your changes. If you are trying to change a SPECIFIC table in your game/sheet/handout, then we would need to see the code or an explanation as to WHERE your table is being used in YOUR game to be able to help you, which would explain our four questions. Maybe you weren't asking a question, but just stating frustration? Still don't get it but sure, here you go. <table border="1px" width="100">
<thead>
<tr>
<th>Name</th>
<th>Rating</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="attr_feature_name1"/></td>
<td><input type="number" name="attr_feature_rating1"/></td>
<td><input type="number" name="attr_feature_cost2"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name2"/></td>
<td><input type="number" name="attr_feature_rating2"/></td>
<td><input type="number" name="attr_feature_cost2"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name3"/></td>
<td><input type="number" name="attr_feature_rating3"/></td>
<td><input type="number" name="attr_feature_cost3"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name4"/></td>
<td><input type="number" name="attr_feature_rating4"/></td>
<td><input type="number" name="attr_feature_cost4"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name5"/></td>
<td><input type="number" name="attr_feature_rating5"/></td>
<td><input type="number" name="attr_feature_cost5"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name6"/></td>
<td><input type="number" name="attr_feature_rating6"/></td>
<td><input type="number" name="attr_feature_cost6"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name7"/></td>
<td><input type="number" name="attr_feature_rating7"/></td>
<td><input type="number" name="attr_feature_cost7"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name8"/></td>
<td><input type="number" name="attr_feature_rating8"/></td>
<td><input type="number" name="attr_feature_cost8"/></td>
</tr>
<tr>
<td><input type="text" name="attr_feature_name9"/></td>
<td><input type="number" name="attr_feature_rating9"/></td>
<td><input type="number" name="attr_feature_cost9"/></td>
<tr>
<td><input type="text" name="attr_feature_name10"/></td>
<td><input type="number" name="attr_feature_rating10"/></td>
<td><input type="number" name="attr_feature_cost10"/></td>
</tr>
</tbody>
</table>