How to align the Back/Next buttons side by side?

  • mcgonzalez
    Asked on December 19, 2017 at 8:19 AM

    I would like my form to show back and next buttons side by side instead of one on top to the other on mobile.

    15136895092017 12 19 0715 Screenshot 10

    Can you help.

  • Richie JotForm Support
    Replied on December 19, 2017 at 9:50 AM

    You can add this custom css code to align the buttons to each other.

    @media (max-width:480px){
      .form-pagebreak-next-container{
        position:absolute;
      }
    }

    Here is a sample screenshot.

    How to align the Back/Next buttons side by side? Image 1 Screenshot 20


    Here is a guide on how to insert custom CSS.

    How-to-Inject-Custom-CSS-Codes

  • mcgonzalez
    Replied on December 19, 2017 at 10:07 AM

    Thank you Richie, that works just fine.