Hide Billing Address Fields for Authorize.net Payment field

  • pbieser
    Asked on October 15, 2015 at 12:37 PM

    Can someone please provide me the CSS to inject to hide those fields? I don't have expertise in this and the CSS I found to PayPal Pro billing field doesn't seem to be working for Authorize.net payment fields. Below is just a test form I created for someone to test on if need be.

     

    Thanks,

    Patrick

  • David JotForm Support Manager
    Replied on October 15, 2015 at 3:09 PM

    Please inject the following CSS code to hide the address fields: http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    .form-address-table tr:FIRST-CHILD + tr+tr+tr+tr{

    display:none;

    }

    .form-address-table tr:FIRST-CHILD + tr+tr+tr+tr+tr{

    display:none;

    }

    .form-address-table tr:FIRST-CHILD + tr+tr+tr+tr+tr+tr{

    display:none;

    }

    .form-address-table tr:FIRST-CHILD + tr+tr+tr+tr+tr+tr+tr{

    display:none;

    }

    .form-address-table tr:FIRST-CHILD + tr+tr+tr+tr+tr+tr+tr+tr{

    display:none;

    }

    Here is the result: https://form.jotform.com/52875332379970?

    Hide Billing Address Fields for Authorize Screenshot 20

    You may clone my form if you want to: http://www.jotform.com/help/42-How-to-Clone-an-Existing-Form-from-a-URL

    If you need anything else, please open a new thread, we will be glad to assist you.

  • pbieser
    Replied on October 16, 2015 at 10:16 AM

    Perfect! Thanks for the help