
curtis w. said: ok its simple formatting that i cant remeber... i want to be able to place them side by side eachother instead o f vertical listings here is some of the code <b><label>WEAPONS</label></b>
<u><label>WEAPON 1</label></u>
<fieldset class="repeating_wpntype">
<label>Type
<select class ="sheet-select" name="attr_wpn_select" value="0" style="width:290px">
<option value="0"> </option>
<!--snipped a bunch of options-->
<option value="34">CSW-Gravity Well Projector</option>
</select></label>
<!--<label>-->Weapon System<select class ="sheet-select" name="attr_WS_select" value="0" style="width:100px">
<option value="0"> </option>
<option value="1">Turret</option>
<option value="2">Fire-Linked</option>
</select>
<select class ="sheet-select" name="attr_WS1_select" value="0" style="width:100px">
<option value="0"> </option>
<option value="1">Turret</option>
<option value="2">Fire-linked</option>
</select><!--</label>-->
<table>
<label>Amount<input type="number" name="attr_quant1" class="sheet-smallnumber" min="0" value="3" style="width:50px"/></label>
<label>Fire Arc
<select class ="sheet-select" name="attr_FA_select" value="0" style="width:70px">
<option value="0"> </option>
<option value="1">Turret</option><!--snipped a bunch of options-->
<option value="2">Left</option>
</select></label>
<label>Amount<input type="number" name="attr_quant2" class="sheet-smallnumber" min="0" value="3" style="width:50px"/></label>
<label>Fire Arc
<select class ="sheet-select" name="attr_fa2_select" value="0" style="width:70px">
<option value="0"> </option>
<option value="1">Turret</option>
<!--snipped a bunch of options-->
<option value="2">Left</option>
</select></label>
<label>Amount<input type="number" name="attr_quant3" class="sheet-smallnumber" min="0" value="3" style="width:50px"/></label>
<label>Fire Arc
<select class ="sheet-select" name="attr_fa3" value="0" style="width:70px">
<option value="0"> </option>
<!--snipped options-->
<option value="2">Left</option>
</select></label>
<label>Amount<input type="number" name="attr_quant4" class="sheet-smallnumber" min="0" value="3" style="width:50px"/></label>
<label>Fire Arc
<select class ="sheet-select" name="attr_fa4select" value="0" style="width:70px">
<option value="0"> </option>
<option value="1">Turret</option>
<!--snipped options-->
<option value="2">Left</option>
</select></label>
</fieldset> First of all, do you have any CSS you are already using to define styles for things like <label>, or any other tags? It would be important for us to know what those are if you want help with formatting. Secondly, were you intentionally including dropdown menus inside <label> tags? Not saying you can't, just wondering. Thirdly, you have a <table> tag with stuff inside it with no <tr> or <td> tags at all, you'll want to correct that. Also, if I added things correctly, you have 870px worth of width used. Depending on how you have your other containers (<div>s?) set up, that may exceed the container, which would force a wrap to the next line. The other thing I noticed about your width declarations is that they aren't terminated with a semicolon (;), and I believe that's the correct way to terminate those declarations. I'm not sure it would cause problems, but it definitely wouldn't hurt.