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 .
×

[Help] Aligning Buttons in repeating fields

Recently I've been doing changes to a existing character sheet and I am far from any sort of programmer or know anything about this at all. I have managed to do many changes that I am happy with but my last change has me a bit lost. In a repeating field/repeating section for skills in this game I have a button to roll each skill. The fields and buttons works as intended but the alignment of the button is wrong.  Here  is a picture of how it looks. The buttons that are incorrect are in the "professional abilities" section. I want it to look similar to how it does in the Defining Skill section.  Here is the code for that whole segment.  <div class="sheet-2colrow" style="margin-bottom: 10px;" > <div class="sheet-col"> <table style="width: 15%;"> <tbody> <tr> <td>Profession</td> <td><input type="text" name="attr_Profession"/></td> </tr> <tr> <td>Defining Skill</td> <td> <select name="attr_definingskill" class="definingskill"> <option>Select</option> <option value="@{EMP}">Busking</option> <option value="@{CRA}">Patch Job</option> <option value="@{INT}">Practice Paranoia</option> <option value="@{CRA}">Healing Hands</option> <option value="@{INT}">Magic Training</option> <option value="@{BODY}">Tough as Nails</option> <option value="@{INT}">Well Traveled</option> <option value="@{EMP}">Initiate of the Gods</option> <option value="@{INT}">Witcher Training</option> </select> </td> <td><input type=number name="attr_Dskill" value="0"/></td> <td><button type=roll name="roll_DefiningSKill" value="@{Modifier} + @{definingskill} + @{Dskill}"></button></td> </tr> <tr> <td valign="top">Professional Abilities</td> <td> <fieldset class="repeating_PSkills"> <select name="attr_SType" class="SType" style="width:65px;"> <option value="@{INT}">INT</option> <option value="@{REF}">REF</option> <option value="@{DEX}">DEX</option> <option value="@{BODY}">BODY</option> <option value="@{SPD}">SPD</option> <option value="@{EMP}">EMP</option> <option value="@{CRA}">CRA</option> <option value="@{WILL}">WILL</option> <option value="@{LUCK}">LUCK</option> </select> <input type="number" name="attr_PSkillLevel" value="0"> <input type="text" name="attr_PSkill" style="width:100px;" /> <button type=roll name="roll_PSkill" value="@{Modifier} + @{PSkillLevel} + @{SType}" ></button> </td> </fieldset> Again, I barely know anything of how any of this works and I tried looking for similar problems but did not find anything.  Thanks for reading.
1537406188

Edited 1537406244
vÍnce
Pro
Sheet Author
Try matching the number of table cells used in the "Defining Skill" row.  Meaning you need to wrap your select and input fields in the "Professional Abilities" row using <td>FOO</td>