Vince, no worries. You're correct, you would just need to assign a class to the <td> tag, and that class can be anything you want. So, here's an example: <rolltemplate class="sheet-rolltemplate-general">
<table class="sheet-rolltemplate-general">
{{#name}}<tr><th>{{name}}</th></tr>{{/name}}
{{#subtag}}<tr><td class="sheet-subheader">{{subtag}}</td></tr>{{/subtag}}
{{#save}}<tr><td class="sheet-savethrow" >{{save}}</td></tr>{{/save}}
{{#allprops() name subtag save}}
<tr><td><span class="sheet-tcat">{{key}} = </span>{{value}}</td></tr>
{{/allprops() name subtag save}}
</table>
</rolltemplate> And here's how I would do the CSS: .sheet-rolltemplate-general .sheet-savethrow .inlinerollresult.importantroll {
color: #3FB315;
border: none;
} All I meant by "...be as explicit as possible..." was that you need to list out every class in the chain. In my example, the class .inlinerollresult is contained within the class .sheet-encroll (which is the <td> class) which is contained within a <div> with the class .sheet-rtcard which is contained within the roll template with the class .sheet-rolltemplate-spadestrait2. So, the entire CSS string needed to be: .sheet-rolltemplate-spadestrait2 .sheet-rtcard .sheet-fakeroll .inlinerollresult So, you start with the top most contain and work your way in until you get to the .inlinerollresult. I don't know if the table having the same class as your roll template will cause a problem or not. You may want to modify the table class so that it slightly different. If you need to do that,then you would need to add that class to your CSS string. For example, if you changed the table class to "sheet-template-table", then your CSS would look something like this: .sheet-rolltemplate-general .sheet-template-table .sheet-savethrow .inlinerollresult.importantroll {
color: #3FB315;
border: none;
} I hope this helps.