Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Roll Templates help

Hello, hope this is the correct place for this question. i am trying to play with the custom roll templates. i have in my html in the bottom <rolltemplate class="sheet-rolltemplate-kaka"> <table>     <caption>{{name}}</caption>     {{#allprops() }}        <tr><td>{{key}}</td><td>{{value}}</td>     {{/allprops() }} </table> </rolltemplate> and in the css: .sheet-rolltemplate-kaka table { width:100%; background-color:white; border:1px solid rgba(112,32,130,1) } .sheet-rolltemplate-kaka caption { background-color:rgba(112,32,130,1); color:white; font-family:"Helvetica Neue",Helvetica,sans-serif; font-weight:300; font-size:1.1em; padding:5px } .sheet-rolltemplate-kaka td { padding:5px; line-height:1.4em; vertical-align:top } .sheet-rolltemplate-kaka td:first-child { font-weight:bold; text-align:right; min-width:50px; padding-right:10px } .sheet-rolltemplate-kaka tr:nth-child(even) { background-color:#eee } when i enter on the chat &{template:kaka} {{name=Test}}{{test=2}}{{2}}{{3}} i get blank if i enter on the chat  &{template:Default} {{name=Test}}{{test=2}}{{2}}{{3}} i get a default roll template any thoughts  what is the problem? thank you!
1592410308
Andreas J.
Forum Champion
Sheet Author
Translator
If you've copied the code of an existing roll template and added it to your sheet, it should work. Have you used the browsers web dev tools to inspect the roll template output? It could show why this isn't working. You could take a look at the Star Wars D6 sheet's code, it has a few simple roll templates based on the default one that works. See if you spot any difference.
Thank you! found it. refresh page after you do an alteration to the html...