
Hello! I'm working on a Custom Sheet and I'm kind of stuck. For some reason, when creating a roll template the CSS from it is not applying on the chat. here is the rollTemplate: < rolltemplate class = "sheet-rolltemplate-movement" > < div class = "sheet-template-container" > < h4 > {{nombre}} </ h4 > < p >< b > {{caracteristica}}: </ b > {{tirada}} </ p > {{#rollGreater() tirada 9}} < div class = "sheet-result" > < b > 10+: </ b >< br /> {{{exito10}}} </ div > {{/rollGreater() tirada 9}} {{#rollBetween() tirada 7 9}} < div class = "sheet-result" > < b > 7-9: </ b >< br /> {{{exito7}}} </ div > {{/rollBetween() tirada 7 9}} {{#rollLess() tirada 7}} < div class = "sheet-result" > < b > 6-: </ b >< br /> {{{fallo}}} </ div > {{/rollLess() tirada 7}} </ div > </ rolltemplate > the button to invoke it: < button type = "roll" name = "roll_castigar_oscuridad" class = "roll-movimiento" value = "&{template:movement} {{nombre=Castigar la Oscuridad}} {{caracteristica=Combativa}} {{tirada=[[2d6 + @{combativa} + @{penalizador_combativa}]]}} {{exito10=Elige uno: < br/> &emsp; ✽ Haz Castigo al enemigo. < br/> &emsp; ✽ Derrota Marionetas.}} {{exito7=Elige uno: < br/> &emsp; ✽ Haz Castigo al enemigo, a continuación sufre Angustia. < br/> &emsp; ✽ Derrota a una Marioneta o bien derrota a varias Marionetas recibiendo Angustia. < br/> &emsp; ✽ No haces Castigo al enemigo ni derrotas Marionetas, pero no recibes Angustia. Suma +1 a tu próximo Movimiento.}} {{fallo=El MC decide cómo la Oscuridad se impone en este momento.}}" > </ button > and the CSS: .sheet-rolltemplate-movement { background-color : # fff5f8 ; border : 2px solid # 8C358C ; border-radius : 10px ; padding : 10px ; font-family : "Verdana" , sans-serif ; font-size : 12px ; color : # 333 ; margin : 5px ; } .sheet-rolltemplate-movement h4 { margin : 0 0 5px 0 ; font-size : 14px ; color : # 8C358C ; border-bottom : 1px solid # e0b4d7 ; padding-bottom : 3px ; } .sheet-rolltemplate-movement p { margin : 5px 0 ; } .sheet-rolltemplate-movement .sheet-result { background-color : # fce4ec ; border : 1px solid # ec407a ; border-radius : 6px ; padding : 6px ; margin : 6px 0 ; } .sheet-rolltemplate-movement b { color : # BA68C8 ; } Hope you can help me with it since it's getting kind of frustating. Thanks!