Forms Checkbox size

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top