How to customise back and next buttons?

  • emmasemmens
    Asked on November 4, 2017 at 2:05 AM

    Hello.

    Is there a way to change the position of the back and next buttons?  I can see options to move the left, right and centre, however they both move.  I would like to achieve the back button towards the left corner of the form and the next button towards the right corner of the form - so need to split them up and have a big space in the middle.  I think it might have something to do with CSS and have been in there on the advanced designer to try and figure out how to do this but not getting very far.

    Any advise would be much appreciated.

  • Nik_C
    Replied on November 4, 2017 at 5:25 AM

    You could add the below CSS code to your Custom CSS Field:

    .form-pagebreak-back {

        position: relative;

        left: -190%!important;

    }

    .form-pagebreak-next {

        position: relative;

        left: 190%!important;

    }

    That should make the form look like this:

    1509787335Screen Shot 2017 11 04 at 10 Screenshot 10

    You can check my form as well: https://form.jotform.com/73072044551954

    Let us know how it worked.

    Thank you!



  • emmasemmens
    Replied on November 7, 2017 at 5:43 AM
    Great – thank you so much – worked perfectly.
    Much appreciated.
    ...