How can I increase the font size on the payment section?

  • EnergyExpress
    Asked on March 16, 2015 at 2:48 PM
    How can I increase the font on the payment section?
  • Sean
    Replied on March 16, 2015 at 3:00 PM

    Is this the form http://www.jotformpro.com/form/50745129319962 you would like to make the font size adjustment to for the Payment field?

    .form-product-child-label{
    font-size: 14px !important;
    }

    Follow this guide to inject the CSS code above.
    With the code injected, this should be the outcome:

    How can I increase the font size on the payment section? Image 1 Screenshot 20

    You can adjust the highlighted section until you get your desired result. Do let us know if further assistance is needed.


    Cheers!

  • EnergyExpress
    Replied on March 16, 2015 at 3:46 PM

    Great.  Thank you! I cleaned up the form. Would you mind checking to see how to increase  the font size on the sub-element when using the Add a Predefined Property Field (quantity & item sub-total).How can I increase the font size on the payment section? Image 1 Screenshot 20

  • Sean
    Replied on March 16, 2015 at 5:01 PM

    You're most welcome.

    To increase the font size of the sub elements you can add the following CSS Code:

    .form-sub-label{
    font-size: 12px !important;
    }

    .form-item-subtotal{
    font-size: 12px !important;
    }

    This should work.