
Hi there. I recently put together a table that looks like this. <div class="inventorytable"> <div class="inventorytabletoprow"> <span class="inventorytableinventoryword">Inventory</span> <span class="inventorytableweightword">Weight</span> <span class="inventorytablebulkword">Bulk</span> <span class="inventorytablemobilityword">Mobility</span> <span class="inventorytableapmodword">AP Mod</span> <span class="inventoryequippedword">Equipped</span> </div> <fieldset class="repeating_inventorytableitemrepeats"> <div class="inventorytablerepeatinginputsrow"> <input type="text" name="attr_inventorytableitem" value=""> <input type="text" name="attr_inventorytableweight" value=""> <input type="text" name="attr_inventorytablebulk" value=""> <input type="text" name="attr_inventorytablemobiliy" value=""> <input type="text" name="attr_inventorytableapmod" value=""> <input type="checkbox" name="inventoryequippedcheck" value="inventoryequipped"> </div> </fieldset> <div class="inventorytotalsrow"> <span class="inventorytabletotalsword">Totals</span> <input type="text" name="attr_inventorytableweighttotal" value=""> <input type="text" name="attr_inventorytablebulktotal" value=""> <input type="text" name="attr_inventorytablemobilitytotal" value=""> <input type="text" name="attr_inventorytableapmodtotal" value=""> <input type="text" name="attr_inventorytableequippedtotal" value=""> </div> </div> After styling, at first it appears like this. <a href="https://capture.dropbox.com/yv5aSSezDGWHQ2oZ" rel="nofollow">https://capture.dropbox.com/yv5aSSezDGWHQ2oZ</a> I noticed in chrome inspect that I'm able to drag the row with the 'add' and 'modify' so that it's at the end of the table, which is much more ideal. <a href="https://www.dropbox.com/s/owszf2jh48arc6l/Screen%20Shot%202023-07-16%20at%203.38.01%20AM.png?dl=0" rel="nofollow">https://www.dropbox.com/s/owszf2jh48arc6l/Screen%20Shot%202023-07-16%20at%203.38.01%20AM.png?dl=0</a> Is there a way to do this within the character sheet code? Perhaps by targeting div.repcontrol in the css? Or is this a limitation within Roll20? Thanks!