Hi All Another rookie mistake i guess but the code supplied on the CSS Wizardary page just isn't working for me. Roll button with a d6 icon By using the icon fonts available in Roll20, we can replace the d20 icon it with a different dice, instead of removing it. CSS: button[type = roll].sheet - d6 - dice::before {
font - family: 'dicefontd6' ;
content: 'F ' ;
}
HTML: < button type = "roll" value = "/roll @{dex}d6" name = "roll_dex" class = "d6-dice" > < /button > I've even created a game with a CSS file and html file of just those lines but I still get the d20 icon.. anyone got any points as to what I'm doing wrong... CSS really is a dark art to me..