So, hey. I just wanted to tell you guys about the weirdest CSS bug I have ever encountered while trying to add a roll template. I debugged it for my sheet and just went another route. But I thought you should be aware of it. While working on my latest character sheet, I decided I was not happy with the way the default rolltemplate displayed things, and loaded up Jakob's Better Default Roll Template . And it didn't work. At all. Tested it on a different character sheet and it worked FINE. I tried other templates I have and they ALSO failed. It's like this build just didn't like rolltemplates. Well, after hours of testing and debugging, I finally tracked it down to a single entry in my CSS sheet for the build. But there was nothing wrong with the entry. It was simply a CSS value comparison to show certain things when a particular one of my character sheet "error" messages popped up. Just a string value used as a CSS selector. See below. .sheet-alertcheck[value*="You do not own this item"] ~ .sheet-eqshow{
display:inline-block;
} THIS stupid little selector entry was halting my use of rolltemplates, and costing me hours of headache. Crazier still, when I narrowed things further it seemed to be the word "this" that it objected to. The fix? Drumroll please... .sheet-alertcheck[value*="You do not own that item"] ~ .sheet-eqshow{
display:inline-block;
} Works great now. So, yeah. That was weird. I have no idea WHY Roll20's rolltemplate functions dislike the word "this," but I will try to steer clear of it in the future. :P