I want to make a form that has radio boxes that look like checkboxes. Furthermore I want them to have the glyphcon x's when checked. I tried several solutions for this including:
input[type="radio"] {
-webkit-appearance: checkbox; /* Chrome, Safari, Opera */
-moz-appearance: checkbox; /* Firefox */
-ms-appearance: checkbox; /* not currently supported */
}
When I used this solution it made checkboxes with line across the checkbox that would disappear after one was checked and they were hovered over.
I also tried the solutions offered here: How to style checkbox using CSS? and they did not seem to work.
Can somebody please help me?