I've been tweaking the Palladium Megaverse sheet for use in my games. For the most part, I have gotten to a place where the sheet does everything that I need at the moment. However, there is something that I didn't have a problem until some players of mine had an issue with how labels of fields display in a repeating field page of the sheet for skills. I realized today that the other repeating sections have the labels and input fields in the same table structure. <div class="sheet-tabbed-panel"> <div class="sheet-row-panel"> <input type="checkbox" name="attr_gear-toggle" class="sheet-arrow" /> <h4>Gear</h4> <div class="body"> <fieldset class="repeating_gear"> <table style="width:75%"> <tr> <td><h5>Item</h5></td> <td><h5>Reference</h5></td> <td><h5>Location</h5></td> </tr> <tr> <td><div class="sheet-inventory-gear"><input class="sheet-input-center-aligned" type="text" value="" name="attr_gear_name" placeholder="Gear Name" /></div></td> <td><div class="sheet-inventory-gear"><input class="sheet-input-center-aligned" type="text" value="" name="attr_gear_reference_" placeholder="Book and page numbere"/></div></td> <td><div class="sheet-inventory-gear"><input class="sheet-input-center-aligned" type="text" value="" name="attr_gear_location" placeholder="Worn, pouch, bank, etc." /></div></td> </tr> </table> <table> <tr> <textarea wrap="soft" class="sheet-textarea" value="" name="attr_gear_details" placeholder="Gear Details" /></textarea> </tr> </table> </fieldset> </div> </div> </div> The repeating skills section has the labels in a separate table: <div class="sheet-tabbed-panel"> <div class="sheet-row-panel"> <input type="checkbox" name="attr_OCC-Skill-toggle" class="sheet-arrow" /> <h4>Occupational Class Skills</h4> <div class="body"> <table style="width:90%"> <tr> <td style="width:10%"></td> <td style="width:25%"><h5>Name</h5></td> <td style="width:8%"><h5>Rating</h5></td> <td style="width:10%"><h5>Skill Level</h5></td> <td><h5>Notes</h5></td> </tr> </table> <fieldset class="repeating_skillocc"> <table> <tr> <td><div class="sheet-ability"><button type="roll" value="&{template:custom} {{color=green}} {{title=**@{character_name}'s**}} {{subtitle=@{skill_name}}} {{Check=[[d100cs<1cf>100]]}} {{Skill=@{skill_rating}}} {{desc=@{skill_reference}}}"></button></div></td> <td><div class="sheet-ability"><input class="sheet-input-center-aligned" type="text" style="width:220px" value="" name="attr_skill_name" placeholder="Skill name"/></div></td> <td><div class="sheet-ability"><input class="sheet-input-center-aligned" type="number" value="" name="attr_skill_rating" /><b>%</b></div></td> <td><div class="sheet-ability"><input class="sheet-input-center-aligned" type="number" style="width:60px" value="+" name="attr_skill_level" /></div></td> <td><div class="sheet-ability"><input class="sheet-input-center-aligned" type="text" style="width:300px" value="" name="attr_skill_reference" /></div></td> <td></td> </tr> </table> </fieldset> </div> </div> </div> This works just fine if your character sheet opens in the specific width the sheet was designed for, but if you have a wider aspect monitor the labels are not at all lined up with the correct labels, because they will stretch with the sheet width. When I realized how the table structure was different, I tried building that section the the others. However, the skills section is usually going to have the most "repeats" of the field lines. If the labels are duplicated with each entry, then it starts building up a lot of sheet length with a character that has a lot of skills. So, how do I go about fixing this? While I might leave the inventory repeating sections alone, I have a couple other repeating field sections that would be just fine with having the column labels once at the top and the input fields stretching down below. Is this something that should be handled by relabeling things to reference in css? Any advice for an ignorant sheet editor? My current sheet as I am using it in my games can be found here: <a href="https://drive.google.com/drive/folders/1erd8gNQb1q8uPJghlYKXWCL9I6XZIdmZ" rel="nofollow">https://drive.google.com/drive/folders/1erd8gNQb1q8uPJghlYKXWCL9I6XZIdmZ</a> The original sheet I have been editing is here: <a href="https://github.com/Roll20/roll20-character-sheets/tree/master/Palladium%20Megaverse" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/tree/master/Palladium%20Megaverse</a> And if I can get an image to load, I will insert an image of what I want to avoid. For me, it looks like this: But for a couple of my players, it starts out looking like this without them resizing the sheet.