2

I am creating a mobile-targeted page using Twitter Bootstrap. Since it's mobile-targeted, I'd like all my form UI elements to be nice and big.

The input-lg class achieves this nicely for ordinary text inputs. But it has no effect on radio buttons or checkboxes, and I don't see an equivalent class for them mentioned in the docs.

enter image description here

How should I achieve the same result for checkboxes and radio buttons?

Mark Amery
  • 143,130
  • 81
  • 406
  • 459
  • 1
    Not sure if its possible with CSS: http://stackoverflow.com/questions/4920281/how-to-change-the-size-of-the-radio-button-using-css – Dan Aug 27 '14 at 13:16

1 Answers1

0

It is possible via CSS, you can add the class "form-control" to your checkbox or radio button and it will become bigger; input-* classes will not affect the size of the control, only with input-sm you can see a little difference.