Pro- Larger mobile friendly checkboxes

on this page
http://staging1.kidsmagicworld.com.au/oosh-vacation-care-magic-shows-sydney/

sorry you’ll have to scroll down all the way to the bottom

is an instant quote form- that checkbox needs to be ticket in order for the sms to send

How do I make it bigger as in a bigger square on the page making it easier to touch with your finger

Hi,

To achieve that, you can add a unique class to your section where your forms resides.

Then add this in Theme Options > CSS

.my-form input[type="checkbox"] {
    width:30px;
    height:30px;
}

In case you want to learn CSS, I am sending you some videos that could help.


Thanks

sorry to say that had no effect

Hi There,

Please update the previous CSS to this:

.my-form input[type="checkbox"] {
    width: 30px !important;
    height: 30px !important;
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.