Hello again. I'm trying to figure out how to set a dropdown box, or rather, several of them, side by side. I've seen this done in sheet like the pathfinder sheet and they seem to be able to control how wide the boxes are. I can not. The boxes are too wide to be of any real use in the capacity I have planned. I've tried writing their size into the css, using style= in both pixels and percents, but all I can do is stack them over each other without decreasing the size :/ The code have so far for this section is: <tr><td style="color: rgb(189, 191, 188); text-shadow: 2px 2px #000; font-family: Arial; font-size: .8125rem; font-weight: bold;"><b>Class:</b><br><label class="sheet-small-label2" style="width: 74px;">
<select name="attr_class1" title="@{class1}">
<option value="0" selected>None</option>
<option value="1">Warrior</option>
<option value="2">Fighter</option>
<option value="3">Ranger</option>
<option vlaue="4">Paladin</option>
</select></label>
<label class="sheet-small-label2" style="width: 74px;">
<select name="attr_class2" title="@{class2}">
<option value="0" selected>None</option>
<option value="1">Wizard</option>
<option value="2">Mage</option>
</select></label>
<label class="sheet-small-label2" style="width: 74px;">
<select name="attr_class3" title="@{class3}">
<option value="0" selected>None</option>
<option value="1">Priest</option>
<option value="2">Cleric</option>
<option value="3">Druid</option>
</select></label>
<label class="sheet-small-label2" style="width: 74px;">
<select name="attr_class4" title="@{class4}">
<option value="0" selected>None</option>
<option value="1">Rogue</option>
<option value="2">Thief</option>
<option value="3">Bard</option>
</select></label>
<label class="sheet-small-label2" style="width: 74px;">
<select name="attr_class5" title="@{class5}">
<option value="0" selected>None</option>
<option value="1">Psion</option>
<option value="2">W. Talent</option>
</select></label>
</td></tr>