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

Custom SW Sheet Fieldset help

Hey all, My add - modify buttons seem to have disappeared from my field set and I have no idea why.  I suspect they are off the grid somehow, but I don't know hoe to get them back. html </div> <fieldset class="repeating-weapon"> <div><button type="roll"></button></div><!--- needs to roll template to include all weapon information and skill dice ---> <div><input class="repweapon-name" name="attr_repweapon_name" type="text" /></div> <div><select class="repweapon-skill" name='attr_repweapon_skill_list'> <option value="Brawl">Brawl</option> <option value="Gunnery">Gunner</option> <option value="Lightsaber">Lightsaber</option> <option value="Melee">Melee</option> <option value="Ranged - Light">Ranged - Light</option> <option value="Ranged - Heavy">Ranged - Heavy</option> </select></div> <div><input class= "repweapon-dmg-input" type="number" name="repweapon_dmg" max="50" min="0" value="0" /></div> <div><select class="repweapon-range" name='attr_repweapon_range_list'> <option value="Engaged">Engaged</option> <option value="Short">Short</option> <option value="Medium">Medium</option> <option value="Long">Long</option> <option value="Extreme">Extreme</option> </select></div> <div><input class= "repweapon-crit-input" type="number" name="repweapon_crit" max="10" min="0" value="0" /></div> <div><input class="repweapon-special" name="attr_repweapon_special" type="text" /></div> </fieldset> </div> css: .sheet-weapons { grid-area: weapon; display: grid; background-color: #f7f7f5; grid-template-columns: 30px 155px 130px 60px 100px 60px 190px; grid-template-rows: auto; } .sheet-repeating-weapon { display: grid; grid-template-columns: 30px 155px 130px 60px 100px 60px 190px; } input.sheet-repweapon-name { font-size: 10pt; width: 155px; background-color: transparent; border-bottom: 1px solid; height: 25px; } select.sheet-repweapon-skill { font-size: 10pt; width: 130px; background-color: transparent; border-bottom: 1px solid; height: 25px; } input.sheet-repweapon-dmg-input { font-size: 10pt; width: 60px; background-color: transparent; border-bottom: 1px solid; height: 25px; } select.sheet-repweapon-range { font-size: 10pt; width: 100px; background-color: transparent; border-bottom: 1px solid; height: 25px; } input.sheet-repweapon-crit-input { font-size: 10pt; width: 60px; background-color: transparent; border-bottom: 1px solid; height: 25px; } input.sheet-repweapon-special { font-size: 10pt; width: 190px; background-color: transparent; border-bottom: 1px solid; height: 25px; } thanks!
1605632199
Andreas J.
Forum Champion
Sheet Author
Translator
Open up the web dev tools in your browser(google it), and then look at the html code, and highlight the modify-buttons code int  the html. That should highlight where they are on the webpage, even if they are invisible or underneath something else.
1605646151

Edited 1605646212
vÍnce
Pro
Sheet Author
Try changing your repeating fieldset class to "repeating_weapon".&nbsp;"repeating-weapon" won't be recognized by roll20 as a repeating section. <a href="https://wiki.roll20.net/Building_Character_Sheets#Repeating_Sections" rel="nofollow">https://wiki.roll20.net/Building_Character_Sheets#Repeating_Sections</a> &nbsp;