Forms Checkbox size

J

Jim Fitzgerald

Is there any way to increase the size of the checkbox that is generated in a
FrontPage form. I have tried all of the options that i can find on the
checkbox properties, but have not been able to affect the size.

I am designing a form for seniors and would like to enlarge it so that it is
more apparent as to whether it is checked or not.

Thanks,

Jim Fitzgerald
 
R

Ronx

For IE only, set width and height for the check box
<input type="checkbox" name="Cbx" value="On"
style="width:50px;height:50px;">Tick Here

You could also use the <label> tag:
<input type="checkbox" name="Cbx" value="On" id="cbx"><label
for="cbx">Tick here</label>
The user can click anywhere in the checkbox or label to tick the box,
but is does not make the box any larger or clearer.
 
Top