Align amount to the left edge of credit card payment in form.

  • art_crate
    Asked on June 5, 2016 at 8:00 PM
    Is there anyway to align gift card amount to the left edge of Credit Card-- and possibly remove that line? See image below:

     

    Thanks!

     

  • Chriistian Jotform Support
    Replied on June 5, 2016 at 9:45 PM

    You can inject the custom css below to align the gift card amount to the left.

    #cid_145 hr {

        display: none;

    }

    #input_145_donation {

        margin-left: 240px;

    }

    .form-sub-label[for="input_145_donation"] {

        padding-left: 240px!important;

        padding-bottom: 20px;

    }

    Align amount to the left edge of credit card payment in form Screenshot 20

    If you need further assistance, please let us know.

  • art_crate
    Replied on June 5, 2016 at 10:42 PM

    Thanks Chriistian! Worked perfect.