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.

I have asp.net mvc project and many checkboxes client has given me psd in which chech boxes are white and black i think black are checked there is no check tick on any simple is that i want to remove tip and color checked checkboxes colored black with white border.

<input name="24" type="checkbox" value="true" />
<input name="24" type="hidden" value="false" />
<label for="Industry__Manufacturing__and_Technology">Industry</label>
<br />
<input name="25" type="checkbox" value="true" />
<input name="25" type="hidden" value="false" />
<label for="Intelligence">Intelligence</label>                        
<br />
...........

i have like above autogenerated html.

share|improve this question
used to this thecssninja.com/demo/css_custom-forms – Rohit Azad Sep 24 '12 at 11:39
1  
Photoshop, its a psd file, which is a photoshop file. Most likely you can turn of the blacktick in a layer specified by the client in photoshop. There is no code involved in that. Its a graphical design thing. You have to save it in Photoshop after your done into a png file in order to have them linked in your CSS. – Dorvalla Sep 24 '12 at 11:42

1 Answer

up vote 2 down vote accepted

Impossible to do using the native controls. Form elements are styled more by the OS than the browser. You'll need to use some kind of replacement technique, something like Uniform (if you're using jQuery) will work

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.