The allprops() helper takes any pairs ({{foo = bar}} etc.) and lists them. Forever if you really want to keep typing that long.... :D As for the css... well, the TestCombinedRoll is a trimmed down version of my DnD35StdRoll; the CSS is basically identical but with the name changed and hm... you probably need to add a class="header" to the name row if you want it to be a solid color. So it should read: <tr><th class="header" colspan="2">{{name}}</th></tr> <!--header section--> and if you don't like the arrow, remove the <tr class="arrow-container"><td colspan="2"><div class="arrow-right"></div></td></tr> line; that's what makes the arrow in the template. (the CSS below has a bunch of different arrows I use; all of the various ones that are in the different flags I use in the 3.5 templates.) My CSS is: (this one has the header color set to gray.) .sheet-rolltemplate-TestCombinedRoll table {
width: 100%;
padding: 2px;
border: 1px solid;
background-color: #ffffff;
text-align: left;
}
.sheet-rolltemplate-TestCombinedRoll th {
/*color: rgb(45, 126, 107);*/
padding-left: 5px;
line-height: 1.6em;
font-size: 1.2em;
text-align: left;
/*text-align: center;*/
}
.sheet-rolltemplate-TestCombinedRoll .sheet-header{
background-color: gray;
color: white;
text-align: center;
/*color: rgba(112,32,130,1);*/
}
.sheet-rolltemplate-TestCombinedRoll .sheet-subheader {
color: #000;
font-size: 1em;
font-style: italic;
text-align: left;
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-right {
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-left: 180px solid rgb(126, 45, 64);
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-left {
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-right: 180px solid rgb(126, 45, 64);
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-spell {
border-top: 3px solid rgb(45, 64, 126);
border-bottom: 3px solid rgb(45, 64, 126);
border-left: 90px solid transparent;
border-right: 90px solid transparent;
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-ability {
border-top: 3px solid transparent;
border-bottom: 3px solid rgb(204, 115, 51);
border-left: 90px solid rgb(204, 115, 51);
border-right: 90px solid rgb(204, 115, 51);
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-save {
border-top: 3px solid rgb(153, 77, 153);
border-bottom: 3px solid rgb(153, 77, 153);
border-left: 90px solid rgb(153, 77, 153);
border-right: 90px solid rgb(153, 77, 153);
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-skill {
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-left: 90px solid rgb(64, 126, 45);
border-right: 90px solid rgb(64, 126, 45);
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-skillcat {
border-top: 3px solid transparent;
border-bottom: 3px solid rgb(45, 126, 107);
border-left: 90px solid transparent;
border-right: 90px solid transparent;
}
.sheet-rolltemplate-TestCombinedRoll .sheet-arrow-initiative {
border-top: 1px solid rgb(204, 153, 51);
border-bottom: 1px solid rgb(204, 153, 51);
border-left: 90px solid rgb(204, 153, 51);
border-right: 90px solid rgb(204, 153, 51);
}
.sheet-rolltemplate-TestCombinedRoll .sheet-tcat {
font-style: italic;
}
.sheet-rolltemplate-TestCombinedRoll td {
padding-left: 5px;
text-align: left;
}
.sheet-rolltemplate-TestCombinedRoll .sheet-tr-repeating:nth-child(even){
background-color:#eee;
}
.sheet-rolltemplate-TestCombinedRoll .inlinerollresult {
background-color: transparent;
border: none;
}
.sheet-rolltemplate-TestCombinedRoll .inlinerollresult.fullcrit {
color: #3FB315;
border: none;
}
.sheet-rolltemplate-TestCombinedRoll .inlinerollresult.fullfail {
color: #B31515;
border: none;
}
.sheet-rolltemplate-TestCombinedRoll .inlinerollresult.importantroll {
color: #4A57ED;
border: none;
}
The default template CSS.. hm. I think I found it once by poking though the page source code but I didn't save a copy of it anywhere; the part of it I used is in my CSS. (and I may hop in sometime later... I am still trying to get the tabbed sheet to where I want it before I replace the other one with it... maybe seeing another variant will help me figure out what I don't like about it... :D Thank you. Hope that helps.