how to separate the 3 buttos "submit - reset - print"

  • nyrved
    Asked on April 26, 2017 at 8:34 AM

    As the 3 buttom overlapp each other on a smartphone , i wonder how to put each of them on a different line.

    Is there anyway to do this using the code

     

    Thanks for your help

    Jotform Thread 1129063 Screenshot
  • Sven
    Replied on April 26, 2017 at 9:53 AM

    You can add 3 submit buttons on top of each other, and enable a print button on one and hide the submit, and enable the reset button on the other and hide the submit, and disable print and reset on the third. 

    You can hide the submit button by using CSS code, in the following way:

    "Submit-button-id"

    {

    display:none;
    }

     

    Make sure you change the "Submit-button-id" into the ID of the button, here's how to get field's IDs:

    How-to-find-field-IDs-and-names

     

    Thank you.