
Hi, I had in my sheet, the Jakob's Better Default Rolltemplate as per the wiki. But with the Character Sheet improvement, my sheet stop working. I removed I instance of sheet-, and it started to work again (mostly). But the Rolltemplate is not. the Sheet- was removed, and its not working. Tried to put it back (copy & pasted from wiki) and still not working (with the sheet-). I really don't know why its not working since it was before... and its a simple rolltempate-custom... macro: &{template:default} work, but not &{template:custom} HTML: <!--- ROLL TEMPLATES --> < rolltemplate class = "rolltemplate-custom" > < div class = "container color-{{color}}" > < div class = "header" > {{#title}} < div class = "title" > {{title}} </ div > {{/title}} {{#subtitle}} < div class = "subtitle" > {{subtitle}} </ div > {{/subtitle}} {{#subtitle2}} < div class = "subtitle2" > {{subtitle2}} </ div > {{/subtitle2}} </ div > < div class = "content" > {{#allprops() title subtitle subtitle2 desc color}} < div class = "key" > {{key}} </ div > < div class = "value" > {{value}} </ div > {{/allprops() title subtitle desc color}} {{#desc}} < div class = "desc" > {{desc}} </ div > {{/desc}} </ div > </ div > </ rolltemplate > CSS: /*============== ROLL TEMPLATE ==================*/ /* Smaller margins - remove these if you want the huge default left margin */ .rolltemplate-custom { margin-left : -37px ; } .withoutavatars .rolltemplate-custom { margin-left : -7px ; } .rolltemplate-custom .container { border : 1px solid ; /* by default, the border is the same color as the header. You can change this here, e.g. to black */ border-color : var ( --header-bg-color ); } /* Header formatting - title and subtitle */ .rolltemplate-custom .header { background-color : var ( --header-bg-color ); /* change text-align to center to center the header text */ text-align : left ; color : var ( --header-text-color ); padding : 5px ; } .rolltemplate-custom .title { font-size : 1.1em ; } .rolltemplate-custom .subtitle { font-size : .9em ; } .rolltemplate-custom .subtitle2 { font-size : .9em ; } /* example colors */ .rolltemplate-custom .container { /* this is the default color */ --header-bg-color : rgba ( 112 , 32 , 130 , 1 ); --header-text-color : #FFF ; } .rolltemplate-custom .container.color-red { --header-bg-color : #F00 ; } .rolltemplate-custom .container.color-green { --header-bg-color : #0F0 ; --header-text-color : #000 ; } /* Allprops part */ .rolltemplate-custom .content { display : grid ; background : #FFF ; /* Header formatting - modify the column layout below */ grid-template-columns : auto auto ; /* Line height to match default roll template */ line-height : 1.4em ; } .rolltemplate-custom .content > div { padding : 5px ; } /* Left column */ .rolltemplate-custom .content .key { font-weight : bold ; padding-right : 10px ; text-align : right ; } /* Empty rule, use this if you want to change the right column .rolltemplate-custom .value { } */ /* Make even-numbered rows grey */ .rolltemplate-custom .content :nth-child ( 4n+3 ), .rolltemplate-custom .content :nth-child ( 4n ) { background : #EEE ; } /* Description field */ .rolltemplate-custom .desc { grid-column : span 2 ; padding : 5px ; text-align : center ; } MACRO: < button type = "roll" class = "fireweapon" value = "&{template:custom} {{title=***@{weapon-name}***}} {{subtitle=@{character_name}}} {{subtitle2= Position: @{weapon-loc}}} {{**Margin Attack** = [[2d6 - 8 + @{gunnery-score} + ?{Conditional Modifiers|0}]] Success }} {{**Shots/Missiles** = @{weapon-damagev-Shots}}} {{**Damage** = @{weapon-damagev}}} " > Fire </ button > Any help?