Back with another question! I have been attempting to create a custom roll template for the last hour or so, but have not been able to get ANY styling to show up in the Sandbox. I feel like I have read the documents here and here up and down to no avail. I have made a very simple test example, which I can't even get to work. Template (at the end of the charactersheet, this part works) <rolltemplate class="sheet-rolltemplate-test">
<div>
{{A}}<br />
{{B}}
</div>
</rolltemplate> The style (at the end of the character sheet css file) .sheet-rolltemplate-test div {
font-size: 24px;
color: red;
} The roll macro (in a roll-type button) &{template:test} {{A=test}} {{B=test2}} This is what I see in chat And in the "debug" window in chrome See "element.style {}" is empty, no styling is applied. What am I doing wrong?