How do you make the font size larger?

  • aggraphics
    Asked on June 11, 2014 at 5:15 PM

    also in each field.. the text below example: street address

     

    how can i make that font larger?

  • Steve VP of Sales Operations
    Replied on June 11, 2014 at 5:27 PM

    Hello,

    I'm researching this and will follow up with you shortly.

    Thanks!

    -Steve

  • Steve VP of Sales Operations
    Replied on June 11, 2014 at 5:50 PM

    Hello!

    You can adjust the font in a couple ways. For fields like the heading you can double click on it, and then using the toolbar->font size drop down to select a new size.

    How do you make the font size larger? Image 1 Screenshot 30

    For other fields we allow you in include custom CSS. See this document for reference:

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

    To access:

    1) Click on the Setup & Embed tab

    2) Select Preferences

    3) Select Form Styles

    4) Select Inject Custom CSS field

    To stylize the street address, we would inject this CSS code to increase the font size, and change the color.

    #sublabel_6_addr_line1 {
        font-size: 2em;

        color: blue;
    }

    This produces the following:

    How do you make the font size larger? Image 2 Screenshot 41

    Let us know if you need further assistance with adding custom CSS. Thanks!