Click to See Complete Forum and Search --> : Custom Checkbox?


avm
04-28-2003, 12:06 PM
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?

Thanks

havik
04-28-2003, 12:54 PM
Try 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