How can I choose/set the font style and position of a text field (not the label) ?

  • FRANFORMIA
    Asked on May 1, 2016 at 6:08 AM

    I would like that my pre-populate data be centered and in bold format with a fixed font...!

    today they are positioned in the left and in normal font.

     

    Now :

    LABEL : PRE-POPULATE DATA

     

    What I want :

    LABEL :             PRE-POPULATE DATA

  • Welvin Support Team Lead
    Replied on May 1, 2016 at 10:40 AM

    If you want to do that on the textbox field only, add the following custom CSS codes to your form:

    input {

        text-align: center;

        font-weight: bold;

    }

    If you'd like to do the same on a textarea, simply add textarea:

    input, textarea {

        text-align: center;

        font-weight: bold;

    }

    Here's how to apply the custom CSS codes: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes. Please add it to the bottom part.