How to change the single checkbox field label and re-align the checkboxes to right?

  • PreferredGlobal
    Asked on March 10, 2016 at 9:50 AM

    Hi -- 

     

    I would like to reduce the font of the "I have a read the Privacy Policy / Terms & Conditions" text, and put the "Yes" & "No" check-box to the right of the test.  How can I do this?  Thanks!

  • Ben
    Replied on March 10, 2016 at 10:53 AM

    To change the font size you could apply the following code:

    #label_26 {
        font-size: 12px;
        float:left;

    }

    You can change 12 to any other number to match your desired value.

    li#id_26 {
        width: 100%;
    }
    #id_26 > div {
        float: left;
        margin-left: 10px;
    }

    This will make the checkboxes on the right of the label.

    How to change the single checkbox field label and re align the checkboxes to right? Image 1 Screenshot 20

    You can add the CSS above to your form by following these steps: Inject Custom CSS Codes

    The only thing to note is to add the CSS codes above after all other codes in your forms custom CSS field.

  • PreferredGlobal
    Replied on March 10, 2016 at 11:46 AM
    Thanks !!
    Sent from my iPhone
    ...