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

Custome character sheet attribute bug

1592403753

Edited 1592417829
So im working with the UnofficialElderScrollsRPG character sheet found on <a href="https://github.com/Roll20/roll20-character-sheets/tree/master/UnofficialElderScrollsRPG" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/tree/master/UnofficialElderScrollsRPG</a> . The main issue im trying to fix for sheet is with the attributes area where the big box is then the tinny box for your score and modifier is. When ever you hover over the small circle '10' show up i can edit the text but when you move the mouse away the text disappears. If you hover over it again it show the text again until you remove your mouse from it. Im not an expert in html ive used it a little but im mostly a c++,c# programmer. But from what ive debugged so far the code for the attribute circle is line 1027(the strength one) and is the following code. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div class="attr-mod"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input class="baseattr" type="text" name="attr_strength_base" title="@{strength}" value="10"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type="hidden" name="attr_strength" value="10"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input class="attr-flag" type="hidden" name="attr_strength_flag" value="0"&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;span class="finalattr" name="attr_strength"&gt;&lt;/span&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt; I could be looking in the wrong place, as i said im not the good with html ive done some basic stuff with it but im not that skilled overall in html. So if anyone is able to help me figure out what is wrong or point me in the right direction i would be grateful.
1592410470
Andreas J.
Forum Champion
Sheet Author
Translator
That segment seems to save the stats yes, but it's likely the sheet have some sheetworkers at the bottom that modifies the stats when you edit them, so would also be relevant to how that part functions.