What is the CSS for TOS Text

  • xxxTRISTAMxxx
    Asked on December 3, 2018 at 5:27 PM

    I would like to make the TOS text large (32 size) and bolded. Text near the check box.   What is the CSS for that.  Thank You

  • ArsheenBanu
    Replied on December 3, 2018 at 6:59 PM

    You can add css by defining text in <div> or <p> tag with a class name say "P" (It can be any name).

    and define the properties as

    .P{

    font-size: 32px;

    font-weight: bold;

    You can also add attributes like font-style, color, font-family.

    Hope this helps.

    Thank you

  • Kevin Support Team Lead
    Replied on December 3, 2018 at 9:35 PM

    You may do that injecting the following CSS code: 

    - This needs to be injected to the widget: 

    label#_label {

        font-size: 32px;

        font-weight: bold;

    }

    Guide: https://www.jotform.com/help/428-How-to-Inject-CSS-Codes-to-Widgets 

    - This needs to be injected to the form: 

    iframe#customFieldFrame_72 {

        height: 300px !important;

        width: 100% !important;

    }

    Guide: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Result: https://form.jotform.com/83368149894979 

    I hope this helps.