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

Weird character in middle of sheet...

1402661837

Edited 1402661906
There is a < on my sheet just under my skills banner. At first I thought I just had a stray character in the HTML, but after examining the HTML I can not find this character anywhere. Here is the portion of the HTML for this area of the sheet. I just can't find where the hell this < is coming from. <div class="sheet-character-sheet sheet-feats"> <div> <div class='sheet-2colrow'> <div class='sheet-col' style="width: 250px"> <br> <table> <tr> <h3 style="text-align: center; background-color: #000000; color: #FFF;">Feats</h3> <br> <table> <tr> <fieldset class="repeating_feats" style="width: 250px"> <input class="sheet-inputbox" style="width: 250px" type="text" value="Feat" name="attr_feat" title="Edit field with the name of the Feat as found on page 114 to 117 in the Core Rulebook"/> <textarea value="Description" title="Edit this field with the description of the feat's effect"></textarea> </fieldset> </tr> </table> </tr> </table> </div> <div class='sheet-col' style="width: 510px"> <br> <table> <h3 style="text-align: center; background-color: #000000; color: #FFF;">Skills</h3> <tr> <th style="width: 80;">Skill Name</th> <th style="width: 20px;">Total<br>Bonus</th><th></th><th style="width: 60px; text-align: left;">Ability<br>Mod</th><th style="width: 60px; text-align: left;">Ranks</th><th style="width: 60px; text-align: left;">Misc<br>Mod</th> <tr> <td><input type="checkbox" name="attr_acrobatics"> Acrobatics</td> <td><input class="sheet-inputbox" type="number" name="attr_total_acr" value="@{skill_dex}+@{ranks_acr}+@{misc_acr}" style="width: 40px;" disabled="true"></td> <td>= DEX</td> <td><input class="sheet-inputbox" type="number" name="attr_skill_dex" style="height: 24px; width: 40px;" value="floor(@{DEX}/2-5)" disabled="true"/> +</td> <td><input class="sheet-inputbox" type="number" name="attr_ranks_acr" value="0" style="width: 40px;"> +</td> <td><input class="sheet-inputbox" type="number" name="attr_misc_acr" value="0" style="width: 40px;"></td> <td><button type="roll" name="attr_acro" title='Acrobatics-check' value="@{character_name}'s Acrobatics check: [[1d20 + @{total_acr}]]"/></td> </tr>
1402673101
Sam M.
Pro
Sheet Author
It looks like you're missing a closing tag for the <tr> right after Skills
1402685671

Edited 1402686553
Diana P
Pro
Sheet Author
It looks like it's coming from some where else; if i put just that snippet of code in, (in a fresh-ish campaign) I don't see the stray < .....
Yea, it was about 200 lines down in one of the knowledge skills. The td tag for that line had an extra < in it. Didn't realize that would manifest above the table like that. At least I learned now where a problem might be in the future. Sitting at 1590 lines of HTML for this sheet, with at least a few more before I am done. Thanks for the help guys. PS: Sam, that closing tag had no effect at all... that is odd. I guess it just skipped over the next <tr> and used its closing tag then. I am guessing the <th> line keep all that data from mixing in with the next row.
1402712377
Lithl
Pro
Sheet Author
API Scripter
Likely not related to the problem at hand, but you shouldn't put the h3 element in the table like that; the immediate children of a table element should be thead, tbody, tfoot, or tr.
You know what, they aren't supposed to be like that. Some how, these two tables where made wrong. They should be spanning the column divs, not the tables.