How can I switch Submit and Print button?

  • alexfenwick
    Asked on December 23, 2016 at 1:37 AM

    Is it possible to switch the buttons so that the Print button is on top and Submit the second button?

     

    How can I switch Submit and Print button? Image 1 Screenshot 20

  • emily
    Replied on December 23, 2016 at 1:58 AM

    Hi,

    Thank you for contacting us.

    To change the alignment of the Submit and Print Form buttons, please inject these custom CSS codes. 

    #input_2 {
       position: absolute;
       top: 65px;
    }
     
    #input_print_2 {
       position: absolute;
       top: 0px;
    }
     
    You can find the user guide on injecting custom CSS codes below.
     
    Here is the screenshot of the buttons after injection of CSS codes.
     
    How can I switch Submit and Print button? Image 1 Screenshot 20
     
    Hope this helps. If you have any other question, please let us know.
     
    Thank you.
  • alexfenwick
    Replied on December 23, 2016 at 4:45 AM
    Fantastic! Thanks.
    ...