how to set page break button to right hand side

  • micebcd
    Asked on August 13, 2015 at 6:23 AM

    Dear,

     

    please advise how to set page break button to right hand side

     

    tks

    Jason

  • Sammy
    Replied on August 13, 2015 at 8:39 AM

    Hello Jason

    You can use either of the following CSS snippets

    1. To set the entire button set to the right

    .form-pagebreak {
     float:right !important;
    }

    2. To set the previous button left and the next button to the right

    .form-pagebreak-next-container {
        float : right !important;
    }

    .form-pagebreak-back-container {
        float : left !important;
    }

     

    Use the form designer tool to insert the CSS codehow to set page break button to right hand side Image 1 Screenshot 30how to set page break button to right hand side Image 2 Screenshot 41