Using Form Tools, Check Box. How do I indent some of the check boxes?

  • jbeeman2
    Asked on March 23, 2015 at 4:07 PM

    This is how I want it to look:

    Using Form Tools, Check Box Screenshot 20

  • jonathan
    Replied on March 23, 2015 at 7:13 PM

    You can add CSS codes using the Form Designer like this

    #input_1_1,#input_1_2{

    margin-left: 20px;

    }#input_2_1,#input_2_3{

      margin-left: 20px;

    }

     

    #input_#_# is the Checkbox selection ID#

    margin-lef in px is the margin/distance

    Using Form Tools, Check Box Screenshot 20

    test form http://form.jotformpro.com/form/50816981766973?

     

    Hope this help. Let us know if you need further assistance.

    Thanks.

     

     

     

     

  • jonathan
    Replied on March 23, 2015 at 7:15 PM

    Actually my sample CSS can be simplified to this

    #input_1_1,#input_1_2,#input_2_1,#input_2_3

    {

    margin-left: 20px;

    }

    --