Increaseing the size of TICK boxes

  • Thread starter Thread starter Sonars_UK
  • Start date Start date
S

Sonars_UK

Sorry about the typo in my previous post.

Hi,

When setting up a form is there a way to increase the size of a tick box?


Thanks in advance.

Sonars UK
 
Hello,

You can use CSS. Be sure to specify both the height and width.

For example, the code

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

gives a checkbox of 50px. Checkboxes can not be stretched, so both the width
and height need to be equal.
 
Back
Top