How would I increase the size of a checkbox?

Hello. I would like to increase the size of checkbox fields so that they are easier for users to click on. However, the settings for CSS of the Title and CSS of the Field do not change the size of a textbox.

image

I figured this out yesterday. Just sharing the code that helped below in case anyone else has the same question in the future. Just place the following snippet of code in the OnLoad event of your application, and adjust the scale according to how large you want the checkbox to be:

/* Start: Increase the size of checkboxes */
?>
<style>

input[type=checkbox]
{
  /* Double-sized Checkboxes  */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  transform: scale(2);
  padding: 0px;
}
</style>
<?php
/* End: Increase the size of checkboxes */