The Total value in the Payment Integration is too narrow (total is being cut off)

  • hughdal
    Asked on April 16, 2018 at 1:54 PM

    As you see in the screenshot, the total is cut off.

    Is there a way of widening this field? Payments are via Paypal.

    Thx!


    Jotform Thread 1446199 Screenshot
  • Adrian
    Replied on April 16, 2018 at 3:27 PM

    Yes, the width of that field can be changed using Custom CSS.

    (How to Inject Custom CSS Codes)

    I have added the following CSS to your form.

    #input_21_donation {
      width: 100%;
    }

    Feel free to change the value of the field's width. You can also use pixels instead.

    #input_21_donation {
      width: 100px;
    }

  • hughdal
    Replied on April 16, 2018 at 6:29 PM

    This doesn't seem to have worked on another form...

    https://www.jotform.com/build/51816784091259


    1523917735Capture Screenshot 10

  • Jan
    Replied on April 16, 2018 at 10:12 PM

    For that form, it should be #input_13_donation. Here's the code:

    #input_13_donation {
    width: 30%;
    }

    Here's the result:

    152393076604 17 z0lzp Screenshot 10

    Hope that helps. Thank you.