Making visual tweaks to a specific field on form

  • deecox
    Asked on August 3, 2016 at 3:54 PM

    formID=62153723101341

     

    In the attached screenshot of a form which is still very much work in progress please could you tell me how to apply the following attributes to the output field #input_15 only, under the heading Result! and showing £82.39 -

    Remove border

    Centre

    Increase font size

    Embold

     

    Also how can I remove the extra space below the horizontal line and above "Step 1".

     

    Many thanks

    Dee Cox

    Jotform Thread 897686 Screenshot
  • Boris
    Replied on August 3, 2016 at 4:44 PM

    We can achieve your requirements by applying a bit of custom CSS to your form, such as this one:

    #input_15 {
        height: 1em;
        border: none;
        font-size: 3em;
        text-align: center;
    }

    This is how your form would display with the above CSS:

    Making visual tweaks to a specific field on form Image 1 Screenshot 40

    You can add the above code into your form by following this guide:

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

    When it comes to reducing the blank space between "Step 1" and the horizontal line, I see that you have entered two paragraphs (clicked on Enter/Return key twice), so it has two lines of space separating them instead of one.

    To fix this, please click on the Edit HTML button of this field, click inside the empty space, and press the Backspace keyboard key to remove one of the two paragraphs:

    Making visual tweaks to a specific field on form Image 2 Screenshot 51

    Making visual tweaks to a specific field on form Image 3 Screenshot 62

    Please try it out and let us know should any further tweaks be needed. Cheers