Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

[Help] html screw up

1442319625
Finderski
Plus
Sheet Author
Compendium Curator
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.
here is the css, im nto sure how to read these files yet /* Default CSS */ /* Generated by the CoffeeCup HTML Editor - <a href="http://www.coffeecup.com" rel="nofollow">www.coffeecup.com</a> */ body {&nbsp; } /*----------- Tabs Setup -------------*/ /*this hides the contents of each tab by default*/ .charsheet div[class^="sheet-section"] {&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; display: none; } /*this shows the tab content when the appropriate input field is selected*/ .charsheet input.sheet-tab1:checked ~ div.sheet-section-core, .charsheet input.sheet-tab2:checked ~ div.sheet-section-edges, .charsheet input.sheet-tab3:checked ~ div.sheet-section-skills, .charsheet input.sheet-tab4:checked ~ div.sheet-section-gear, .charsheet input.sheet-tab5:checked ~ div.sheet-section-arcanum, .charsheet input.sheet-tab6:checked ~ div.sheet-section-journal { &nbsp;&nbsp; &nbsp;display: block; } .charsheet input.sheet-tab99:checked ~ div[class^="sheet-section"] { &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;display: block; } /*this hides the radio button for each tab, makes it 100px wide and 40px tall and makes sure it's above everything else*/ .charsheet input.sheet-tab { &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;width: 100px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;height: 40px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cursor: pointer;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;position: relative; &nbsp;&nbsp; &nbsp;opacity: 0; &nbsp;&nbsp; &nbsp;z-index: 9999; } /*this styles the span with the tab information and slides to the left, so it appears underneath the radio button*/ .charsheet span.sheet-tab { &nbsp;&nbsp; &nbsp;text-align: center; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;display: inline-block; &nbsp;&nbsp; &nbsp;font-size: 13px;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;background: #c7c3b0; &nbsp;&nbsp; &nbsp;color: black; &nbsp;&nbsp; &nbsp;font-weight: bold; &nbsp;&nbsp; &nbsp;border-radius: 4px; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;width: 100px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;height: 40px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cursor: pointer;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;position: relative; &nbsp;&nbsp; &nbsp;vertical-align: middle; &nbsp;&nbsp; &nbsp;margin-left: -101px;/*originally 91px*/ } /*this modifies the span color once the radio button is selected so you know which tab is selected*/ .charsheet input.sheet-tab1:checked + span.sheet-tab1, .charsheet input.sheet-tab2:checked + span.sheet-tab2, .charsheet input.sheet-tab3:checked + span.sheet-tab3, .charsheet input.sheet-tab4:checked + span.sheet-tab4, .charsheet input.sheet-tab5:checked + span.sheet-tab5, .charsheet input.sheet-tab6:checked + span.sheet-tab6, .charsheet input.sheet-tab7:checked + span.sheet-tab7, .charsheet input.sheet-tab8:checked + span.sheet-tab8, .charsheet input.sheet-tab99:checked + span.sheet-tab99 { &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;background: #2c424e; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;color: #bfc4c6; &nbsp;&nbsp; &nbsp;border-radius: 4px; } /*----------- End Tab Setup -----------*/ .charsheet { &nbsp;&nbsp;&nbsp; backgroundposition: [center] ;background-image: url(<a href="http://fc08.deviantart.net/fs70/f/2011/342/6/0/nebula_starfield_stock_by_blacklab94-d4ijaqx.jpg" rel="nofollow">http://fc08.deviantart.net/fs70/f/2011/342/6/0/nebula_starfield_stock_by_blacklab94-d4ijaqx.jpg</a>); &nbsp;&nbsp;&nbsp; background-repeat: no-repeat; &nbsp;&nbsp;&nbsp; background-attachment: fixed; &nbsp;&nbsp;&nbsp; color:white; } &nbsp; .charsheet label, h3{ &nbsp;&nbsp;&nbsp; color:white; } &nbsp; .charsheet table{ &nbsp;&nbsp;&nbsp; border-collapse:separate; &nbsp;&nbsp;&nbsp; border-spacing:10px; } &nbsp; .charsheet textarea{ &nbsp;&nbsp;&nbsp; resize:none; } &nbsp; .charsheet .sheet-toppad{ &nbsp;&nbsp;&nbsp; padding:2px; } &nbsp; .charsheet input[type=number].sheet-credits{ &nbsp;&nbsp;&nbsp; width:80px; &nbsp;&nbsp;&nbsp; padding-top:2px; &nbsp;&nbsp;&nbsp; padding-bottom:2px; &nbsp;} &nbsp; .charsheet .sheet-section{ &nbsp;&nbsp;&nbsp; border-top: 5px dotted white; &nbsp;&nbsp;&nbsp; padding-top:10px; &nbsp;&nbsp;&nbsp; padding-bottom:10px; &nbsp;} .charsheet input[type=number].sheet-smallnumber{ &nbsp;&nbsp;&nbsp; width:40px; } .charsheet input[type=text].sheet-smalltext{ &nbsp;&nbsp;&nbsp; width:60px; &nbsp;&nbsp;&nbsp; margin:0px; } .charsheet input[type=text].sheet-shorttext{ &nbsp;&nbsp;&nbsp; padding-top:2px; &nbsp;&nbsp;&nbsp; padding-bottom:2px; } .charsheet input[type=text].sheet-skilltext{ &nbsp;&nbsp;&nbsp; /*changed width from 135*/ &nbsp;&nbsp;&nbsp; width:115px; &nbsp;&nbsp;&nbsp; padding:2px; &nbsp;&nbsp;&nbsp; margin-left:3px; } .charsheet .sheet-right{ &nbsp;&nbsp;&nbsp; float:right; } .charsheet .sheet-bold{ &nbsp;&nbsp;&nbsp; font-size: 12pt; &nbsp;&nbsp;&nbsp; margin-bottom: 10px; } .charsheet .sheet-forcebutton{ &nbsp;&nbsp;&nbsp; width:110px; &nbsp;&nbsp;&nbsp; padding-right:10px; } .charsheet .sheet-tdborder{ &nbsp;&nbsp;&nbsp; border: 2px solid white; &nbsp;&nbsp;&nbsp; vertical-align:top; &nbsp;&nbsp;&nbsp; width:260px; } .charsheet .sheet-rightmargin{ &nbsp;&nbsp;&nbsp; margin-right:0px; } .charsheet input[type=number].sheet-smallshortnumber{ &nbsp;&nbsp;&nbsp; width:40px; &nbsp;&nbsp;&nbsp; padding-top:2px; &nbsp;&nbsp;&nbsp; padding-bottom:2px; &nbsp;&nbsp;&nbsp; display: inline-block; &nbsp;&nbsp;&nbsp; float:right; } .charsheet input[type=number].sheet-shortnumber{ &nbsp;&nbsp;&nbsp; padding-top:2px; &nbsp;&nbsp;&nbsp; padding-bottom:2px; } .charsheet select.sheet-smallselect{ &nbsp;&nbsp;&nbsp; width:60px; &nbsp;&nbsp;&nbsp; height:25px; &nbsp;&nbsp;&nbsp; padding-top:2px; &nbsp;&nbsp;&nbsp; padding-bottom:2px; &nbsp;&nbsp;&nbsp; margin:0px; &nbsp;&nbsp;&nbsp; display: inline-block; &nbsp;&nbsp;&nbsp; float:right; } .charsheet label.sheet-areaLabel{ &nbsp;&nbsp;&nbsp; margin:0px; } /*----------- Tabs Setup -------------*/ /*this hides the contents of each tab by default*/ .charsheet div[class^="sheet-section"] { &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;display: none; } /*this shows the tab content when the appropriate input field is selected*/ .charsheet input.sheet-tab1:checked ~ div.sheet-section-core, .charsheet input.sheet-tab2:checked ~ div.sheet-section-edges, .charsheet input.sheet-tab3:checked ~ div.sheet-section-skills, .charsheet input.sheet-tab4:checked ~ div.sheet-section-gear, .charsheet input.sheet-tab5:checked ~ div.sheet-section-arcanum, .charsheet input.sheet-tab6:checked ~ div.sheet-section-journal { &nbsp;&nbsp; &nbsp;display: block; } .charsheet input.sheet-tab99:checked ~ div[class^="sheet-section"] { &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;display: block; } /*this hides the radio button for each tab, makes it 100px wide and 40px tall and makes sure it's above everything else*/ .charsheet input.sheet-tab { &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;width: 100px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;height: 40px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cursor: pointer;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;position: relative; &nbsp;&nbsp; &nbsp;opacity: 0; &nbsp;&nbsp; &nbsp;z-index: 9999; } /*this styles the span with the tab information and slides to the left, so it appears underneath the radio button*/ .charsheet span.sheet-tab { &nbsp;&nbsp; &nbsp;text-align: center; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;display: inline-block; &nbsp;&nbsp; &nbsp;font-size: 13px;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;background: #c7c3b0; &nbsp;&nbsp; &nbsp;color: black; &nbsp;&nbsp; &nbsp;font-weight: bold; &nbsp;&nbsp; &nbsp;border-radius: 4px; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;width: 100px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;height: 40px; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cursor: pointer;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;position: relative; &nbsp;&nbsp; &nbsp;vertical-align: middle; &nbsp;&nbsp; &nbsp;margin-left: -101px;/*originally 91px*/ } /*this modifies the span color once the radio button is selected so you know which tab is selected*/ .charsheet input.sheet-tab1:checked + span.sheet-tab1, .charsheet input.sheet-tab2:checked + span.sheet-tab2, .charsheet input.sheet-tab3:checked + span.sheet-tab3, .charsheet input.sheet-tab4:checked + span.sheet-tab4, .charsheet input.sheet-tab5:checked + span.sheet-tab5, .charsheet input.sheet-tab6:checked + span.sheet-tab6, .charsheet input.sheet-tab7:checked + span.sheet-tab7, .charsheet input.sheet-tab8:checked + span.sheet-tab8, .charsheet input.sheet-tab99:checked + span.sheet-tab99 { &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;background: #2c424e; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;color: #bfc4c6; &nbsp;&nbsp; &nbsp;border-radius: 4px; } /*----------- End Tab Setup -----------*/ /*hide the textareas*/ .sheet-spec1, .sheet-spec2, .sheet-spec3, .sheet-spec4, .sheet-spec5, .sheet-spec6, .sheet-spec7, .sheet-spec8, .sheet-spec9, .sheet-spec10, .sheet-spec11, .sheet-spec12, .sheet-spec13, .sheet-spec14, .sheet-spec15, .sheet-spec16, .sheet-spec17, .sheet-spec18, .sheet-spec19, .sheet-spec20, .sheet-spec21, .sheet-spec22, .sheet-spec23, .sheet-spec24, .sheet-spec25, .sheet-spec26, .sheet-spec27, .sheet-spec28, .sheet-spec29, .sheet-spec30, .sheet-spec31, .sheet-spec32, .sheet-spec33, .sheet-spec34, .sheet-spec35, .sheet-spec36, .sheet-spec37, .sheet-spec38, .sheet-spec39, .sheet-spec40{ &nbsp;&nbsp;&nbsp; display: none; } /*show the proper text area based on selection*/ .sheet-species1:checked ~ .sheet-spec1, .sheet-species2:checked ~ .sheet-spec2, .sheet-species3:checked ~ .sheet-spec3, .sheet-species4:checked ~ .sheet-spec4, .sheet-species5:checked ~ .sheet-spec5, .sheet-species6:checked ~ .sheet-spec6, .sheet-species7:checked ~ .sheet-spec7, .sheet-species8:checked ~ .sheet-spec8, .sheet-species9:checked ~ .sheet-spec9, .sheet-species10:checked ~ .sheet-spec10, .sheet-species11:checked ~ .sheet-spec11, .sheet-species12:checked ~ .sheet-spec12, .sheet-species13:checked ~ .sheet-spec13, .sheet-species14:checked ~ .sheet-spec14, .sheet-species15:checked ~ .sheet-spec15, .sheet-species16:checked ~ .sheet-spec16, .sheet-species17:checked ~ .sheet-spec17, .sheet-species18:checked ~ .sheet-spec18, .sheet-species19:checked ~ .sheet-spec19, .sheet-species20:checked ~ .sheet-spec20, .sheet-species21:checked ~ .sheet-spec21, .sheet-species22:checked ~ .sheet-spec22, .sheet-species23:checked ~ .sheet-spec23, .sheet-species24:checked ~ .sheet-spec24, .sheet-species25:checked ~ .sheet-spec25, .sheet-species26:checked ~ .sheet-spec26, .sheet-species27:checked ~ .sheet-spec27, .sheet-species28:checked ~ .sheet-spec28, .sheet-species29:checked ~ .sheet-spec29, .sheet-species30:checked ~ .sheet-spec30, .sheet-species31:checked ~ .sheet-spec31, .sheet-species32:checked ~ .sheet-spec32, .sheet-species33:checked ~ .sheet-spec33, .sheet-species34:checked ~ .sheet-spec34, .sheet-species35:checked ~ .sheet-spec35, .sheet-species36:checked ~ .sheet-spec36, .sheet-species37:checked ~ .sheet-spec37, .sheet-species38:checked ~ .sheet-spec38, .sheet-species39:checked ~ .sheet-spec39, .sheet-species40:checked ~ .sheet-spec40,{ &nbsp;&nbsp; &nbsp;display: inline-block; }
First of all, do you have any CSS you are already using to define styles for things like &lt;label&gt;, 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 &lt;label&gt; tags? Not saying you can't, just wondering. Thirdly, you have a &lt;table&gt; tag with stuff inside it with no &lt;tr&gt; or &lt;td&gt; 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 (&lt;div&gt;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. 1- not sure.. still have to learn css 2-i was toying around with label tags adn select tags 3- trying toegt rid of all&nbsp; tables and sue divs instead 4- i look at it thanks
ok here is some code.. i want to make it look better..&nbsp; with "headers" at the top and the input parts below the headers .. i was checking my other code and i have no idea how i di it&nbsp; lol &lt;B&gt;STAR WARS D6 SHIP SHEET&lt;/B&gt;&lt;br&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;!--&lt;table&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Ship Name&lt;/label&gt;&lt;input name="attr_shipname" style="width:300px;" type="text"&gt;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &lt;/div&gt;&lt;div&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label&gt;&lt;b&gt;Craft&lt;/label&gt;&lt;input name="attr_craft" style="width:200px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Type&lt;/label&gt;&lt;input name="attr_type1" style="width:150px; float:left;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:fleft;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label&gt;Scale&lt;/label&gt;&lt;select class ="sheet-select" name="attr_scale_select" value="0" style="width:120px;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Starfigher&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Space Transort&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Capital&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Length&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_length" style="width:50px;" type="text"&gt;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;div&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Skill&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_skill" style="width:250px;" type="text"&gt;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Crew&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_crew" style="width:50px;" type="text"&gt;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;div&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Gunners&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_gunners" style="width:50px;" type="text"&gt;&lt;/b&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;b&gt;&lt;label&gt;Skeleton&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_skeleton" style="width:50px;" type="text"&gt;&lt;/b&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Passengers&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Cargo Capacity&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Consumables&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:80px" type="text"&gt;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Cost&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:80px" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Hyperdrive Multiplire&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:35px" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Hyperdrive Backup&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:35px" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Nav Computer&lt;/label&gt;&lt;select class ="sheet-select" name="attr_dexterity_select" value="0" style="width:70px"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Yes&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;No&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Space&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:55px" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;div style="float:left;"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;label&gt;Atmosphere&lt;/label&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_age" style="width:75px" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/table&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;table&gt;--&gt;
kk bit by bit im getting thinsg strightened out..&nbsp; hereis a pic of somehting that i dunno why its happeneing.. half the sheet has abckground of white
1442371612
Finderski
Plus
Sheet Author
Compendium Curator
Without seeing the code, I would guess it's because a &lt;div&gt; closes (or some such).
been trying to organize this code for the past sveral hours..&nbsp; want each section side by side and when outa room on the next row.. &lt;div style="float:left;"&gt;&lt;!--2 div--&gt;&lt;/div&gt;&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;WEAPONS&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;fieldset class="repeating_weapons"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;u&gt;&lt;label&gt;WEAPON&lt;/label&gt;&lt;/u&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;table class="sheet-tdborder"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;fieldset class="repeating_wpntype1"&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;td class="sheet-tdborder" style="float:right;"&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!-- div 3--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Type&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;select class ="sheet-select" name="attr_weapon_select" value="0" style="width:290px; float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Assault-Cannons"&gt;Assault Cannons&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Light_Laser_Cannon"&gt;Light Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Laser_Cannon"&gt;Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Heavy_Laser Cannon"&gt;Heavy Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Double_Heavy Laser Cannon"&gt;Double Heavy Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Light_Blaster"&gt;Light Blaster&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Triple_Blaster"&gt;Triple Blaster&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Blster_cannon"&gt;Blaster Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Heavy_Blaster_Cannon"&gt;Heavy Blaster Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Light_Ion_Cannon"&gt;Light Ion Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Ion_Cannon"&gt;Ion Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Heavy_Ion_Cannon"&gt;Heavy Ion Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Concussion_missile_Launcher"&gt;Concussion Missile Launcher&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="ProtonTorpedoLauncher"&gt;Proton Torpedo Launcher&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="WarheadLauncher"&gt;Warhead Launcher&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="LightTractorBeam"&gt;Light Tractor Beam&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="TractorBeam"&gt;Tractor Beam&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="HeavyTractorBeam"&gt;Heavy Tarctor Beam&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-LaserCannon"&gt;CSW-Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW_HeavyLasercannon"&gt;CSW-Heavy Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-LightTurboLaser"&gt;CSW-Light TurboLaser&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW_HeavyTurboLaser"&gt;CSW-Heavy TurboLaser&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW_DoubleTruboLaser"&gt;CSW-Double TurboLaser&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-TurbolaserBattery"&gt;CSW-TurboLaser Battery&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW_HeavyTurboLaserBattery"&gt;CSW-Heavy TurboLaser Battery&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-LightIonCannon"&gt;CSW-Light Ion Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-IonCannon"&gt;CSW-Ion Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-HeavyIonCannon"&gt;CSW-Heavy Ion Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-ProtonTorpedoTube"&gt;CSW-Proton Torpedo Tube&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-ConcussionTorpedoTube"&gt;CSW-Concussion Missile Tube&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-LightTractorBeam"&gt;CSW-Light Tractor Beam&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-Tractorbeam"&gt;CSW-Tractor Beam&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-HeavyTractorBeam"&gt;CSW-Heavy Tractor Beam&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="CSW-GravityWellProjector"&gt;CSW-Gravity Well Projector&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Weapon System&lt;/h3&gt;&lt;select class ="sheet-select" name="attr_WS_select" value="0" style="width:100px;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Turret&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Fire-Linked&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;select class ="sheet-select" name="attr_WS1_select" value="0" style="width:100px;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Turret&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Fire-linked&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;tr&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Amount&lt;/h3&gt;&lt;input type="number" name="attr_quant1" class="sheet-smallnumber" min="0" value="3" style="width:50px; float:left;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Fire Arc&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;&lt;select class ="sheet-select" name="attr_FA_select" value="0" style="width:70px;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Turret&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Front&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="3"&gt;Rear&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="4"&gt;Right&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="5"&gt;Left&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt;&lt;/td&gt;&lt;!--&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;&lt;h3&gt;Amount&lt;/h3&gt;&lt;input type="number" name="attr_quant2" class="sheet-smallnumber" min="0" value="3" style="width:50px; float:left;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Fire Arc&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;select class ="sheet-select" name="attr_fa2_select" value="0" style="width:70px; float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Turret&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Front&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="3"&gt;Rear&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="4"&gt;Right&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="5"&gt;Left&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt;&lt;!--&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Amount&lt;/h3&gt;&lt;input type="number" name="attr_quant3" class="sheet-smallnumber" min="0" value="3" style="width:50px; float:left;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Fire Arc&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;select class ="sheet-select" name="attr_fa3" value="0" style="width:70px; float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Turret&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Front&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Rear&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Right&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Left&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt;&lt;!--&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Amount&lt;/h3&gt;&lt;input type="number" name="attr_quant4" class="sheet-smallnumber" min="0" value="3" style="width:50px; float:left;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;Fire Arc&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;select class ="sheet-select" name="attr_fa4select" value="0" style="width:70px; float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Turret&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Front&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Rear&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Right&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Left&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;&lt;h3&gt;Skill&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;select class ="sheet-select" name="attr_Wpnskill_select" value="0" style="width:170px; float:left;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="1"&gt;Starship Gunnery&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="2"&gt;Capital Ship Gunnery&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/select&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 3--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;&lt;h3&gt;Atmosphere Range&lt;/h3&gt;AR&lt;/tr&gt;&lt;tr&gt;&lt;input class="sheet-smalltext sheet-shorttext" name="attr_atmos" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;AR&lt;input class="sheet-smalltext sheet-shorttext" name="attr_ar1" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;AR&lt;input class="sheet-smalltext sheet-shorttext" name="attr_ar2" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/td&gt;&lt;td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;h3&gt;Space Range&lt;/h3&gt;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 3--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;SR&lt;input class="sheet-smalltext sheet-shorttext" name="attr_Sapce" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;SR&lt;input class="sheet-smalltext sheet-shorttext" name="attr_space" style="width:80px;"type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;SR&lt;input class="sheet-smalltext sheet-shorttext" name="attr_space1" style="width:80px;" type="text"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;td&gt;&lt;/tr&gt;&lt;tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;button type="roll" class="astext" style="float:left;" value="&{template:default} {{name=@{shipname}'s @{weapon_select} Fire Contorl Rating}} {{[[(@{fcc1} - 1)d6 + 1d6! + @{fcc1pip}]]}}"&gt;FIRE CONTROL&lt;/button&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;&lt;tr&gt;&lt;/tr&gt;&lt;tr&gt;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 3--&gt;FC &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;input type="number" name="attr_fcc1" class="sheet-smallnumber" min="0" value="3" style="width:50px;"/&gt;D &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; +&lt;input type="number" name="attr_fcc1pip" class="sheet-smallnumber" min="0" max="2" value="0" style="width:50px;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;input type="Text" name="attr_DEXTERITYpip" class="sheet-smallnumber" value="0" style="width:50px"/&gt;--&gt; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;/div&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/td&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;&lt;button type="roll" class="astext" style="float:left;" value="&{template:default} {{name=@{shipname}'s @{weapon_select} Damage Rating}} {{[[(@{ssdmg} - 1)d6 + 1d6! + @{ssdmgpip}]]}}"&gt;DAMAGE&lt;/button&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DMG &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt;&lt;tr&gt;&lt;input type="number" name="attr_ssdmg" class="sheet-smallnumber" min="0" value="3" style="width:50px;"/&gt;D &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; +&lt;input type="number" name="attr_ssdmgpip" class="sheet-smallnumber" min="0" max="2" value="0" style="width:50px;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/fieldset&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&lt;!--1 div--&gt; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&lt;div name="footer" class="sheet-section" style="text-align: Center; padding-top:10px;"&gt;&lt;!-- div 2--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;img src="<a href="http://www.milanricoul.com/starwars/img/starwars-logo.png" rel="nofollow">http://www.milanricoul.com/starwars/img/starwars-logo.png</a>" style="max-height: 100px;" /&gt; &nbsp;&nbsp;&nbsp; &lt;/div&gt;&lt;!-- div 1--&gt; &nbsp;&nbsp; &nbsp;&lt;/div&gt;&lt;!-- div 0--&gt;&lt;!-- div 0--&gt;
1442392001
Finderski
Plus
Sheet Author
Compendium Curator
You have a lot of comments going on that make this a little hard to read...for example: &lt;div style="float:left;"&gt;&lt;!--2 div--&gt;&lt;/div&gt;&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;WEAPONS&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;fieldset class="repeating_weapons"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;u&gt;&lt;label&gt;WEAPON&lt;/label&gt;&lt;/u&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;table class="sheet-tdborder"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;fieldset class="repeating_wpntype1"&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!--&lt;td class="sheet-tdborder" style="float:right;"&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!-- div 3--&gt; If I remove all the "extraneous" comments from the above code, I get: &lt;div style="float:left;"&gt;&lt;/div&gt;&lt;/div&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;h3&gt;WEAPONS&lt;/h3&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;fieldset class="repeating_weapons"&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;!-- div 2--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;table class="sheet-tdborder"&gt; &lt;!-- div 3 --&gt; So, you have an empty &lt;div&gt; and then something you call "div 2" without any &lt;div&gt; tags. &nbsp;Not to mention the hanging &lt;fieldset&gt; and hanging &lt;table&gt; tags. Once you remove all the comments, the first thing in your table is a header tag followed by a select tag, neither of which is within a valid container for a table. If you want a columnar type of thing with 2 &lt;div&gt;s side-by-side, there's a predefined class for that (class="sheet-2col row") and the way you use it is: &lt;div class="sheet-2colrow"&gt; &lt;!-- First Div --&gt; &lt;div class="sheet-col"&gt; &lt;!-- stuff for the first column --&gt; &lt;/div&gt; &lt;!-- Second Div --&gt; &lt;div class="sheet-col"&gt; &lt;!-- stuff for the second column --&gt; &lt;/div&gt; &lt;/div&gt; If you wanted a third column, you could also use: class="sheet-3colrow" As far as I know, there is nothing beyond that, so, if you wanted 4 columns, you'd have to set that up manually. &nbsp;My recommendation, would be to remove all the comments that are removing html tags, and leave only the comments that speak to organization. &nbsp;So, remove things like: &lt;!--&lt;/div&gt;&lt;div style="float:left;"&gt;--&gt; but keep: &lt;!-- div 2 --&gt; Because it's hard to see which tags are actually doing things and which aren't. &nbsp;In the above stuff I'd recommend removing, you'd get rid of the a terminating &lt;/div&gt; tag, which may reveal a &lt;div&gt; tag that was never actually terminated, etc.
ya sorry about the pseudo code mes..&nbsp; i was useing &lt;!-- div 1(Etc)--&gt; to count where how many divs i had when i would mess up and loose the tabs.. I will clean it up.. i thank you for the help
.. ok im working on this now.. i have a drop down menu for a selection, but i would laso like to have it so one can input their own skills as well besides what is availble&nbsp; in the drop down menu &lt;table&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td class="sheet-tdborder" style="width:800px;"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;div class="sheet-bold"&gt;--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;button type='roll'value="&{template:default} {{name=@{charactername}'s Dexterity}} {{[[(@{dexterity} - 1)d6 + 1d6! + @{dexteritypip}]]}}" &gt;Dexterity&lt;/button&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;div style="float:right;"&gt;--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="number" name="attr_dexterity" class="sheet-smallnumber" min="1" value="3"/&gt;D &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; +&lt;input type="number" name="attr_dexteritypip" class="sheet-smallnumber" min="0" max="2" value="0"/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;/div&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;fieldset class="repeating_dexskills"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;button&nbsp; name="dexspec" type="roll" value="&{template:default} {{name=@{charactername}'s @{dexterity_select} Roll }} {{[[(@{dexskilldice} - 1)d6 + 1d6! + @{dexskillpip}]]}}"&gt;&lt;/button&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;input class="sheet-skilltext" type="text" name="attr_dexskillname"/&gt;--&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &lt;select class ="sheet-select" name="attr_dexterity_select" value="0" style="width:200px"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="0"&gt; &lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Blasters"&gt;BLASTER&lt;/option&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="S-Blaster pistol"&gt;Spec-Blaster Pistol&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Blaster heavy pistol"&gt;Spec-Heavy Blaster Pistol&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Blaster rifle"&gt;Spec-Blaster rifle&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Blaster Hold Out"&gt;Spec-Hold out Blaster&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Blaster Repeating"&gt;Spec-Repeating Blaster&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Archaic Guns"&gt;ARCHAIC GUNS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Black Powder Pistol"&gt;Spec-Black powder pistol&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-musket"&gt;Spec-Musket&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Blaster Artillery"&gt;BLASTER ARTILLERY&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Anti-Infantry"&gt;Spec-Anti-Infantry&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Anti-Vehicle"&gt;Spec-Anti-Vehicle&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Surface to air"&gt;Spec-Surface to air&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Surafce to space"&gt;Spec-surface to space&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Surafce to Surface"&gt;Spec-surface to suraface&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="BOWCASTER"&gt;BOWCASTER&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="BOWS"&gt;BOWS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Long bow"&gt;Spec-Long Bow&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-XBow"&gt;Spec-X-Bow&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="BRAWLING PARRY"&gt;BRAWLING PARRY&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-VS Martial Arts"&gt;Spec-vs Martial arts&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-VS Boxing"&gt;Spec-VS Boxing&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="DODGE"&gt;DODGE&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-VS energy"&gt;Spec-VS Energy&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-VS missile weapons"&gt;Spec-VS missile weapons&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="FIREARMS"&gt;FIREARMS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Verpine Shatter Gun"&gt;Spec-Verpine Shatter Gun&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Machine Guns"&gt;Spec-Machine Guns&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Rifles"&gt;Spec-Rifles&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Sniper Rifles"&gt;Spec-Sniper Rifles&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="GRENADE"&gt;GRENADES&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Thermal Detonators"&gt;Spec-Thermal Detonators&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Lightsabers"&gt;LIGHTSABERS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Base Lightsabers"&gt;Spec-Base Lightsabers&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="s-Duel Lightsabers"&gt;Spec-Duel Lightsabers&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="s-Lightstaff"&gt;Spec-Lightstaff&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="s-Great LS"&gt;Spec-Great LS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="s-Duel Phase LS"&gt;Spec-Duel Phase LS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="Melee Combat"&gt;MELEE COMBAT&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Vibroblades"&gt;Spec-VibroBlades&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Knife"&gt;Spec-Knife&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="MELEE PARRY"&gt;MELEE PARRY&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-vs Lightsabers"&gt;Spec-vs Lightsabers&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-vs knives"&gt;Spec-VS Knives&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="MISSILE WEAPONS"&gt;MISSILE WEAPONS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Concusion missile"&gt;Spec-Concusion Missile&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Grenade launcher"&gt;Spec-Grenade Launcher&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="PICKPOCKET"&gt;PICKPOCKET&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="RUNNING"&gt;RUNNING&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="VEHICLE BLASTERS"&gt;VEHICLE BLASTERS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Heavy Blaster Cannon"&gt;Spec-Heavy Blaster Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Heavy Laser Cannon"&gt;Spec-Heavy Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Light Blaster Cannon"&gt;Spec-Light Blaster Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Light Laser Cannon"&gt;Spec-Light Laser Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Heavy Blaster Cannon"&gt;Spec-Heavy Blaster Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Medium Blaster Cannon"&gt;Spec-Medium Blaster Cannon&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="DANCING"&gt;DANCING&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="THROWN WEAPONS"&gt;THROWN WEAPONS&lt;/option&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;option value="S-Knife"&gt;Spec-Knife&lt;/option&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/select&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;div class="sheet-right"&gt;--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="number" name="attr_dexskilldice" class="sheet-smallnumber sheet-shortnumber" min="1" value="3"/&gt;D &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; +&lt;input type="number" name="attr_dexskillpip" class="sheet-smallnumber sheet-shortnumber" min="0" max="2" value="0"/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--&lt;/div&gt;--&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/fieldset&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;
ok i solved my problem, just added in a blank line for more skils.. quick clean and simple.. Next question...&nbsp; can u reccomend a very simple roll template that i can use and modify.. not the default one.. wana figure it out but i dont understand the code from other roll templates,&nbsp; just a simple one like changing colors on the result
1442681166
Finderski
Plus
Sheet Author
Compendium Curator
The wiki can tell you how to create a roll template as part of your character sheet. To change the color of rolls, you'll need to set up your CSS properly. &nbsp;Here's some CSS from my Savage Worlds sheet that doe some of what I think you're trying to get at... CSS: .sheet-rolltemplate-spadestrait2 .sheet-rtcard .sheet-fakeroll .inlinerollresult{ /*padding-right: 0px;*/ text-align: right; color: #4d4d4d; font-weight: normal; font-family: "Trebuchet MS", Helvetica, sans-serif; font-size: 13px; margin-right: -3px; } .sheet-rolltemplate-spadestrait2 .inlinerollresult, .sheet-rolltemplate-solidtrait .inlinerollresult, .sheet-rolltemplate-clubsdamage .inlinerollresult, .sheet-rolltemplate-soliddamage .inlinerollresult, .sheet-rolltemplate-combined .inlinerollresult { &nbsp; &nbsp; background-color: transparent; &nbsp; &nbsp; color: #000000; &nbsp; &nbsp; border: none; } .sheet-rolltemplate-spadestrait2 .inlinerollresult.fullcrit, .sheet-rolltemplate-solidtrait .inlinerollresult.fullcrit, .sheet-rolltemplate-clubsdamage .inlinerollresult.fullcrit, .sheet-rolltemplate-soliddamage .inlinerollresult.fullcrit, .sheet-rolltemplate-combined .inlinerollresult.fullcrit { color: #3FB315; &nbsp; &nbsp; border: none; } .sheet-rolltemplate-spadestrait2 .inlinerollresult.fullfail, .sheet-rolltemplate-solidtrait .inlinerollresult.fullfail, .sheet-rolltemplate-clubsdamage .inlinerollresult.fullfail, .sheet-rolltemplate-soliddamage .inlinerollresult.fullfail, .sheet-rolltemplate-combined .inlinerollresult.fullfail { &nbsp; &nbsp; color: maroon; &nbsp; &nbsp; border: none; } &nbsp; .sheet-rolltemplate-spadestrait2 .inlinerollresult.importantroll, .sheet-rolltemplate-solidtrait .inlinerollresult.importantroll, .sheet-rolltemplate-clubsdamage .inlinerollresult.importantroll, .sheet-rolltemplate-soliddamage .inlinerollresult.importantroll, .sheet-rolltemplate-combined .inlinerollresult.importantroll { color: #3FB315; &nbsp; &nbsp; border: none; } It's the .inlinerollresult stuff that impacts the colors of the dice roll results, etc.
kool// i look at the html code needed for the roll template, but i dont know how to use it &nbsp; alls i wana do is make the diferent colors&nbsp; for stats, force powers, &lt;rolltemplate class="sheet-rolltemplate-test"&gt; &lt;table&gt; &lt;tr&gt;&lt;th&gt;{{rollname}}&lt;/th&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;span class="tcat"&gt;Attack: &lt;/span&gt;{{attack}} | {{attackadvantage}} vs AC&lt;/td&gt;&lt;/tr&gt; {{#damage}} &lt;tr&gt; &lt;td&gt;&lt;span class="tcat"&gt;Damage: &lt;/span&gt;{{damage}} &lt;span class="tcat"&gt;Crit: &lt;/span&gt;{{dmgcrit}}&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;span class="tcat"&gt;Type: &lt;/span&gt;{{dmgtype}}&lt;/td&gt; &lt;/tr&gt; {{/damage}} &lt;tr&gt; &lt;td&gt;&lt;span class="tcat"&gt;Effect: &lt;/span&gt;{{atteffect}}&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/rolltemplate&gt;
i assume with ur css code that there needs some html code in order to be called?&nbsp; like with the @default trigger
with the default tag..&nbsp; i get a purple title witha&nbsp; white background for the result of the roll.. just wana start with simple stuf and change the color of the title section
Test BUtton &lt;button type="roll" value="&{template:Test} {{name=@{wpnname5}'s Strike Rating}} {{[[(@{armstrk} - 1)d6 + 1d6! + @{armstrkpip}]]}}"&gt;STRIKE&lt;/button&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Strike &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&lt;input type="number" name="attr_armstrk" min="0" value="3" style="width:50px;"/&gt;D &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; +&lt;input type="number" name="attr_armstrkpip" min="0" max="2" value="0" style="width:50px;"/&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
figured out the mian part &lt;rolltemplate class="sheet-rolltemplate-customtest"&gt; &lt;table&gt; &nbsp;&nbsp;&nbsp; &lt;caption&gt;{{name}}&lt;/caption&gt; &nbsp;&nbsp;&nbsp; {{#allprops() attack}} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;&lt;td&gt;{{key}}&lt;/td&gt;&lt;td&gt;{{value}}&lt;/td&gt; &nbsp;&nbsp;&nbsp; {{/allprops() attack}} &lt;/table&gt; &nbsp;&nbsp; &lt;!-- &lt;table&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;tr&gt;&lt;th&gt;{{rollname}}&lt;/th&gt;&lt;/tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;tr&gt;&lt;td&gt;&lt;span class="tcat"&gt;Attack: &lt;/span&gt;{{attack}} | {{attackadvantage}} vs AC&lt;/td&gt;&lt;/tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;{{#damage}} &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;td&gt;&lt;span class="tcat"&gt;Damage: &lt;/span&gt;{{damage}} &lt;span class="tcat"&gt;Crit: &lt;/span&gt;{{dmgcrit}}&lt;/td&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;td&gt;&lt;span class="tcat"&gt;Type: &lt;/span&gt;{{dmgtype}}&lt;/td&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;{{/damage}} &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;tr&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;td&gt;&lt;span class="tcat"&gt;Effect: &lt;/span&gt;{{atteffect}}&lt;/td&gt; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/tr&gt; &nbsp;&nbsp;&nbsp; &lt;/table&gt;--&gt; &nbsp;&nbsp; &nbsp; &lt;/rolltemplate&gt; &lt;rolltemplate class="sheet-rolltemplate-stats"&gt; &lt;table&gt; &nbsp;&nbsp;&nbsp; &lt;caption&gt;{{name}}&lt;/caption&gt; &nbsp;&nbsp;&nbsp; {{#allprops() attack}} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;&lt;td&gt;{{key}}&lt;/td&gt;&lt;td&gt;{{value}}&lt;/td&gt; &nbsp;&nbsp;&nbsp; {{/allprops() attack}} &lt;/table&gt; &nbsp; &nbsp; &lt;/rolltemplate&gt; &lt;rolltemplate class="sheet-rolltemplate-force"&gt; &lt;table&gt; &nbsp;&nbsp;&nbsp; &lt;caption&gt;{{name}}&lt;/caption&gt; &nbsp;&nbsp;&nbsp; {{#allprops() attack}} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;&lt;td&gt;{{key}}&lt;/td&gt;&lt;td&gt;{{value}}&lt;/td&gt; &nbsp;&nbsp;&nbsp; {{/allprops() attack}} &lt;/table&gt; &nbsp; &nbsp; &lt;/rolltemplate&gt; and the css /* -----------------roll template--------------------*/ .sheet-rolltemplate-customtest table { &nbsp;&nbsp;&nbsp; width: 100%; &nbsp;&nbsp;&nbsp; border: 1px solid; &nbsp;&nbsp; &nbsp;color: black; &nbsp;&nbsp; &nbsp;font-size: 1em; &nbsp;&nbsp; &nbsp;font-family: "Helvetica Neue", Helvetica, sans-serif; } .sheet-rolltemplate-customtest caption { &nbsp;&nbsp;&nbsp; width: 100%; &nbsp;&nbsp;&nbsp; border: 1px solid; &nbsp;&nbsp;&nbsp; color: white; &nbsp;&nbsp; &nbsp;font-size: 1em; &nbsp;&nbsp; &nbsp;font-family: "Helvetica Neue", Helvetica, sans-serif; &nbsp;&nbsp;&nbsp; font-weight: bold; &nbsp;&nbsp;&nbsp; background-color: rgba(220, 20, 60,1); } .sheet-rolltemplate-customtest th { &nbsp;&nbsp; &nbsp;background-color: rgba(112, 32, 130,1); &nbsp;&nbsp; &nbsp;color: #ffffff; &nbsp;&nbsp; &nbsp;padding: 2px; &nbsp;&nbsp; &nbsp;border-bottom: 1px solid black; &nbsp;&nbsp; &nbsp;line-height: 1.6em; &nbsp;&nbsp; &nbsp;font-size: 1.2em; } .sheet-rolltemplate-customtest .userscript-tcat { &nbsp;&nbsp; &nbsp;font-weight: bold; } .sheet-rolltemplate-customtest td { &nbsp;&nbsp; &nbsp;padding: 5px; &nbsp;&nbsp; &nbsp;border-bottom: 1px solid black; } .sheet-rolltemplate-customtest tr:nth-child(odd) { &nbsp;&nbsp; &nbsp;background-color: rgba(217, 217, 214,1); } .sheet-rolltemplate-customtest tr:nth-child(even) { &nbsp;&nbsp; &nbsp;background-color: rgba(233, 233, 233,1); } .sheet-rolltemplate-customtest .inlinerollresult&nbsp; { &nbsp;&nbsp; &nbsp;display: inline-block; &nbsp;&nbsp; &nbsp;min-width: 1.5em; &nbsp;&nbsp; &nbsp;text-align: center; &nbsp;&nbsp; &nbsp;border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/ } .sheet-rolltemplate-customtest .inlinerollresult.fullcrit { &nbsp;&nbsp; &nbsp;border: 2px solid #3FB315; } .sheet-rolltemplate-customtest .inlinerollresult.fullfail { &nbsp;&nbsp; &nbsp;border: 2px solid #B31515; } .sheet-rolltemplate-customtest .inlinerollresult.importantroll { &nbsp;&nbsp; &nbsp;border: 2px solid #4A57ED; } /* ------------STATS--roll template--------------------*/ .sheet-rolltemplate-stats table { &nbsp;&nbsp;&nbsp; width: 100%; &nbsp;&nbsp;&nbsp; border: 1px solid; &nbsp;&nbsp;&nbsp; color: black; &nbsp;&nbsp; &nbsp;font-size: 1em; &nbsp;&nbsp; &nbsp;font-family: "Helvetica Neue", Helvetica, sans-serif; } .sheet-rolltemplate-stats caption { &nbsp;&nbsp;&nbsp; width: 100%; &nbsp;&nbsp;&nbsp; border: 1px solid; &nbsp;&nbsp;&nbsp; color: white; &nbsp;&nbsp; &nbsp;font-size: 1em; &nbsp;&nbsp; &nbsp;font-family: "Helvetica Neue", Helvetica, sans-serif; &nbsp;&nbsp;&nbsp; font-weight: bold; &nbsp;&nbsp;&nbsp; background-color: rgba(0, 0, 139,1); } .sheet-rolltemplate-stats th { &nbsp;&nbsp; &nbsp;background-color: rgba(112, 32, 130,1); &nbsp;&nbsp; &nbsp;color: #ffffff; &nbsp;&nbsp; &nbsp;padding: 2px; &nbsp;&nbsp; &nbsp;border-bottom: 1px solid black; &nbsp;&nbsp; &nbsp;line-height: 1.6em; &nbsp;&nbsp; &nbsp;font-size: 1.2em; } .sheet-rolltemplate-stats .userscript-tcat { &nbsp;&nbsp; &nbsp;font-weight: bold; } .sheet-rolltemplate-stats td { &nbsp;&nbsp; &nbsp;padding: 5px; &nbsp;&nbsp; &nbsp;border-bottom: 1px solid black; } .sheet-rolltemplate-stats tr:nth-child(odd) { &nbsp;&nbsp; &nbsp;background-color: rgba(217, 217, 214,1); } .sheet-rolltemplate-stats tr:nth-child(even) { &nbsp;&nbsp; &nbsp;background-color: rgba(233, 233, 233,1); } .sheet-rolltemplate-stats .inlinerollresult&nbsp; { &nbsp;&nbsp; &nbsp;display: inline-block; &nbsp;&nbsp; &nbsp;min-width: 1.5em; &nbsp;&nbsp; &nbsp;text-align: center; &nbsp;&nbsp; &nbsp;border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/ } .sheet-rolltemplate-stats .inlinerollresult.fullcrit { &nbsp;&nbsp; &nbsp;border: 2px solid #3FB315; } .sheet-rolltemplate-stats .inlinerollresult.fullfail { &nbsp;&nbsp; &nbsp;border: 2px solid #B31515; } .sheet-rolltemplate-stats .inlinerollresult.importantroll { &nbsp;&nbsp; &nbsp;border: 2px solid #4A57ED; } /* ------------FORCE--roll template--------------------*/ .sheet-rolltemplate-force table { &nbsp;&nbsp;&nbsp; width: 100%; &nbsp;&nbsp;&nbsp; border: 1px solid; &nbsp;&nbsp;&nbsp; color: black; &nbsp;&nbsp;&nbsp; font-size: 1em; &nbsp;&nbsp; &nbsp;font-family: "Helvetica Neue", Helvetica, sans-serif; } .sheet-rolltemplate-force caption { &nbsp;&nbsp;&nbsp; width: 100%; &nbsp;&nbsp;&nbsp; border: 1px solid; &nbsp;&nbsp;&nbsp; color: white; &nbsp;&nbsp; &nbsp;font-size: 1em; &nbsp;&nbsp; &nbsp;font-family: "Helvetica Neue", Helvetica, sans-serif; &nbsp;&nbsp;&nbsp; font-weight: bold; &nbsp;&nbsp;&nbsp; background-color: rgba(0, 128, 0,1); } .sheet-rolltemplate-force th { &nbsp;&nbsp; &nbsp;background-color: rgba(112, 32, 130,1); &nbsp;&nbsp; &nbsp;color: #ffffff; &nbsp;&nbsp; &nbsp;padding: 2px; &nbsp;&nbsp; &nbsp;border-bottom: 1px solid black; &nbsp;&nbsp; &nbsp;line-height: 1.6em; &nbsp;&nbsp; &nbsp;font-size: 1.2em; } .sheet-rolltemplate-force .userscript-tcat { &nbsp;&nbsp; &nbsp;font-weight: bold; } .sheet-rolltemplate-force td { &nbsp;&nbsp; &nbsp;padding: 5px; &nbsp;&nbsp; &nbsp;border-bottom: 1px solid black; } .sheet-rolltemplate-force tr:nth-child(odd) { &nbsp;&nbsp; &nbsp;background-color: rgba(217, 217, 214,1); } .sheet-rolltemplate-stats tr:nth-child(even) { &nbsp;&nbsp; &nbsp;background-color: rgba(233, 233, 233,1); } .sheet-rolltemplate-force .inlinerollresult&nbsp; { &nbsp;&nbsp; &nbsp;display: inline-block; &nbsp;&nbsp; &nbsp;min-width: 1.5em; &nbsp;&nbsp; &nbsp;text-align: center; &nbsp;&nbsp; &nbsp;border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/ } .sheet-rolltemplate-force .inlinerollresult.fullcrit { &nbsp;&nbsp; &nbsp;border: 2px solid #3FB315; } .sheet-rolltemplate-force .inlinerollresult.fullfail { &nbsp;&nbsp; &nbsp;border: 2px solid #B31515; } .sheet-rolltemplate-force .inlinerollresult.importantroll { &nbsp;&nbsp; &nbsp;border: 2px solid #4A57ED; }
i think there is 2 much as far as the coding goes.. any recommendations,&nbsp; maybe how to look at it with more flare