How do I put the 'print' button above the Paypal Payment option?

  • jlmerriner
    Asked on October 3, 2019 at 2:02 PM

    I want to have the user print their forms before paying & submitting. However, when I add the Paypal option, it automatically appears above the 'print button'. How do I fix this?

    Form URL:

    https://form.jotform.com/92675608858172

  • Kevin Support Team Lead
    Replied on October 3, 2019 at 2:51 PM

    Kindly try injecting this CSS code to your form: 

    .form-submit-print{

    margin-top: -60%;

    }

    .paypal-submit-button-wrapper {

        margin-top: 10%;

    }

    This guide will help you injecting the code to your form: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    I hope this helps. 

  • jlmerriner
    Replied on October 3, 2019 at 3:13 PM

    Kevin, thanks for your answer. The CSS is working in the desktop and tablet view. Is there additional CCS to position the button for 'phone' view? 

  • Richie JotForm Support
    Replied on October 3, 2019 at 3:44 PM

    I have checked your form and it seems to be mobile responsive already.

    How do I put the print button above the Paypal Payment option? Image 1 Screenshot 20

    If you need further assistance, let us know.


  • jlmerriner
    Replied on October 3, 2019 at 3:52 PM

    Hi Richie, yes the form is responsive, but I added CSS to position the 'print' button above the Paypal Payment options. It's working on the desktop and tablet views, but on the mobile view, the button is below the payment options. Not sure if there's additional CSS I need to use to position the button in the mobile view.

  • Richie JotForm Support
    Replied on October 3, 2019 at 4:11 PM

    Thank you for explaining further.

    You may use this custom CSS to move the print button above your Products.

    @media screen and (max-width: 480px) {

    #input_print_18{

        display: block;
        margin-top: -440px !important;
        position: absolute;

    }
    }


  • jlmerriner
    Replied on October 3, 2019 at 4:20 PM

    That worked perfectly. Thanks!