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

Remove default crit/fumble highlights from custom rolltemplate

1728354082
Steve
Pro
Sheet Author
Has anybody worked out a clever way to remove the default Red/Blue/Green highlighting on a dice roll in chat?
1728354770
GiGs
Pro
Sheet Author
API Scripter
You can do that with CSS pretty easily. .sheet-rolltemplate- STYLENAME .inlinerollresult , .sheet-rolltemplate- STYLENAME .inlinerollresult.fullfail , .sheet-rolltemplate- STYLENAME .inlinerollresult.fullcrit , .sheet-rolltemplate- STYLENAME .inlinerollresult.importantroll  {     background-color : transparent ;     border : none ; } Just change STYLENAME to the name of your custom rolltemplate.
1728355153
Steve
Pro
Sheet Author
Thanks GiGs.