Change field label within Authorize.net widget

  • Pegazo1
    Asked on December 5, 2017 at 9:49 AM

    In the Authorize.net widget, I want to change the label "Total" to something like "Amount being charged today".  Is this possible within JotForm?

    Jotform Thread 1314786 Screenshot
  • liyam
    Replied on December 5, 2017 at 10:57 AM

    There is no direct way to replace the text, but you can insert this CSS code to replace your text:

    #total-text {
      visibility: hidden;
    }

    #total-text:after{
       visibility: visible;
       content: "Amount being charged today";
       margin-left: -30px;
    } 

    If you need to know how to inject CSS into your form, please follow the steps from this guide: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Feel free to let us know if you have questions.

  • Pegazo1
    Replied on December 5, 2017 at 12:19 PM

    Thank you very much!  I'm not experienced with CSS so it was especially helpful that you gave me the actual code to use!