
so what im trying to do is have it so u can add melee weapon to the sheet by hitting add and then inside each melee weapon there an upgrade area for then to add some effect to the melee weapon but that would be have 2 repeating fieldset and one inside the other so 1st off is that even possiable to do as i really only have a basic understand of html. the code start out with <fieldset class="repeating_meleeweapons"> then i get to the upgrade part and i looked on the CSS wizardly and this is out my brain think it should work but that not the case and im really at a lost as how to fix it <tr> <td colspan="2" class="sheet-statlabel" name="meleeupgradability" style="width: 140px;">Upgrades</td> </tr> <fieldset class="repeating_upgrade" style="display: none;"> <!-- my-repeating-section HTML --> </fieldset> <div class="repcontainer" data-groupname="repeating_my-repeating-section"> <div class="repitem"> <div class="itemcontrol"> <button class="btn btn-danger pictos repcontrol_del">#</button> <a class="btn repcontrol_move">≡</a> </div> <tr> <td colspan="2"><input class="sheet-inputbox" type="text" name="attr_meleeupgradability" placeholder="Upgrade" style="height: 24px; width: 140px;"></td> <td colspan="2"><input class="sheet-inputbox" type="text" name="attr_meleeupgrade_1" placeholder="Effect 1" style="height: 24px; width: 70px;"></td> <td colspan="2"><input class="sheet-inputbox" type="text" name="attr_meleeupgrade_2" placeholder="Effect 2" style="height: 24px; width: 70px;"></td> <td colspan="2"><input class="sheet-inputbox" type="text" name="attr_meleeupgrade_3" placeholder="Effect 3" style="height: 24px; width: 70px;"></td> <td colspan="2"><input class="sheet-inputbox" type="text" name="attr_meleeupgrade_4" placeholder="Effect 4" style="height: 24px; width: 70px;"></td> </tr> <!-- my-repeating-section HTML --> </div> <!-- there will be a div.repitem for each item the user has actually added to the sheet --> </div> <div class="repcontrol" name="repeating_upgrade"> <button class="btn repcontrol_add">+Add</button> <button class="btn repcontrol_edit">Modify</button> </table> </div> </fieldset>