Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I change the color of the check mark within an HTML checkbox input?

share|improve this question
Here are several hints – BalusC Apr 14 '10 at 17:07

3 Answers

You could create a checkbox image and use that as your checkbox

The following post discusses custom input controls...

http://www.thecssninja.com/css/custom-inputs-using-css

share|improve this answer
Two images, one for the checked state and one for the unchecked state. Javascript could swap them for you based on a variable that you set each time the image is clicked. – JYelton Apr 14 '10 at 17:07

I believe you'll need a library like jQuery UI to handle things like that. Can't be done with CSS/HTML alone.

http://jqueryui.com/

share|improve this answer
3  
Doesn't JQuery just manipulate HTML/CSS ... in which case, implies you could does this withOUT needing JQuery. Am I wrong? – JessicaM Apr 14 '10 at 17:07
who says you can't do it with CSS/HTML alone! =D – mauris Apr 14 '10 at 17:08
@Jess: You can just keep using <input type="checkbox"> the normal way to have a fallback for the JS-disabled. – BalusC Apr 14 '10 at 17:08

You can imitate a check box with another element and set the background color as desired.

http://jsfiddle.net/ApHME/

I haven't tried to make it perfect, just to demonstrate the concept. As you can see, the background color is green, no images, no libraries involved; minimal js.


WAIT!!!
MVC purists and other fanatics - You can easily move the js into its own little method, but am trying to demonstrate the simplicity - pretty please don't down-vote me for this.
sigh.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.