How can I increase the size of the subtotal in the Purchase order

  • maisonlondres
    Asked on October 30, 2015 at 9:20 AM

    Hello

    I created  a form available here: https://form.jotform.com/53014030776952

    and i would like to change the size and color of the subtotal  (3rd page of the form) and possibly the total as well

    I understood you need to inject CSS but I have no idea how to do it

     

    many thanks for your help

     

    Cheers

     

    Sebastien

  • Jeanette JotForm Support
    Replied on October 30, 2015 at 1:36 PM

    Please insert this custom CSS code and apply the desired number in pixels, the default one is 10px for your form, I've increased it to 18 px

     

    .form-payment-subtotal, .form-payment-shipping {
        font-size: 18px!important;
        color: #000!important;
    }
     
    How can I increase the size of the subtotal in the Purchase order Image 1 Screenshot 20
     
    And here is my clone of your form:
     
     
    Of course you can change the color and the size to something else, just respect the sintaxis.
     
    Here is a list of color names and the codes:
     
  • maisonlondres
    Replied on November 3, 2015 at 6:43 AM

    Thanks jeannette for your answer, very helpfuk

    I can increase the size of the subtotal but i cant manage with the VAT (TVA)

    what would be the CSS for that?

     

    Thanks!

     

     

  • Kiran Support Team Lead
    Replied on November 3, 2015 at 10:04 AM

    You may inject the following CSS code to your JotForm in order to change the size and color of VAT field.

    .form-payment-tax .form-payment-label {

        font-size: 18px !important;

        color: #000 !important;

    }

    You can change the size of the font by changing the pixel number in the code and color as per your requirement.

    Hope this information helps!