Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

checkbox mark

Status
Not open for further replies.

neomorpheus

Programmer
Mar 9, 2001
47
US
Is there anyway to change the color of the checkmark in a checkbox?
 
I don't think so, I tried playing with a css but the check stayed black.

You might want to make an image that looks like a checkbox with an onclick event to chage it to a checked box with your choice of colours, and put the actual textbox in a hidden layer, or just hide the checkbox with a style, and use javascript to check of the hidden checkbox so your code that processes the form will be able to get the value.
This will hide and with the javascript you can checkit off.

<input type=&quot;checkbox&quot; style=&quot;visibility: hidden; clip: rect( )&quot; name=&quot;checkbox&quot; value=&quot;checkbox&quot;>
 
You can use flash to make you own custom checkboxes. Other than that, I think you're stuck. Tracy Dryden
tracy@bydisn.com

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top