
Hi all, new to the forums here. Long time gamer and quasi programmer, looking for some help. I'm working on character sheets for HarnMaster and the upcoming release of High Colonies (both from Columbia Games), I think I've figured out most things but I've hit a road block with stylized fake check boxes. I'm using code from the CSS Wizardry page that looks like this: /* Fake checkbox */
input[type = "checkbox" ] + span::before {
margin - right: 4px;
line - height: 14px;
text - align: center;
display: inline - block;
vertical - align: middle;
content: "▼" ;
width: 14px;
height: 14px;
font - size: 12px;
}
input[type = "checkbox" ]:checked + span::before {
content: "►" ;
} I'd like to have more than one style, I'm using the lock unlock Pictos ( and ) but would like to use others as well the Gear, Pictos y, and perhaps some others. I've tried several things, but not quite sure how to do that. What is the current best practice for multiple kinds of fake check boxes? thanks.