I have a lot of things in a CSS file that I am using, which is why somehow my checkbox style got screwed up. I have been trying my best to make it appear like normal but I haven't had any luck. Is there any way I can reset the checkbox style to default? I did a F12 in IE and got this as the style.
The "ms-crm-Checkbox" is the class that I am using.
http://i.stack.imgur.com/bKnXR.png
input[type="checkbox"] {
     -webkit-appearance: checkbox !important;
     -moz-appearance: checkbox !important;
     -ms-appearance: checkbox !important;
     -o-appearance: checkbox !important;
     appearance: checkbox !important;
}
                        You added styles on input tag and checkbox is an input consider add styles on input.someclass or input[type="text"] not on all input elements
You can also add styles on all checkbox elements
input[type="checkbox"] {
  /* styles */
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With