How can I change the color of the Subtotal and Shipping labels?

  • carolmaurin
    Asked on August 8, 2019 at 11:43 AM
    The text "subtotal and Shipping" on the order form is gray.  Is there a way to make it black? It seems to be isolated from the rest of the fonts in the order form. Thanks
  • Ivaylo JotForm Support
    Replied on August 8, 2019 at 11:47 AM

    You should use the following CSS code:

    .form-payment-subtotal.form-payment-label {

        color: black !important;

        font-weight: bold !important;

    }

    .form-payment-shipping.form-payment-label {

        color: black !important;

        font-weight: bold !important;

    }

    In order to inject the CSS code, you can check and follow this guide:

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

    Let us know if you need any further assistance.