Custom Checkbox?

liunx

Guest
I am working on putting a form on a touch screen. The default checkboxes are too small for this type of delivery. I would either like to make the default checkbox larger, or ideally, use a custom checkbox. I have created gifs (unchecked and checked states) but don't know how to implement these in the form. Any suggestions?

ThanksTry this:

<input type="checkbox" name="checkboxname" style="height: 50px; width: 50px;">

It'll probably be best to place this into a style sheet and call it from there:

.checkbox { height: 50px; width: 50px; }

<input type="checkbox" name="checkboxname" class="checkbox">

Havik
 
Back
Top