I need a PRINT Button ...ONLY

  • promisenc
    Asked on October 31, 2016 at 1:24 PM

    I don't want to use the Submit button widget. I need a button where people can only print and mail in yje form.

  • David JotForm Support
    Replied on October 31, 2016 at 4:26 PM

    To show the Print button, but not the Submit button, you need to apply a bit of CSS. Now if you want this to be applied to all submit buttons, the code is quite simple:

    button.form-submit-button {
        display: none;
    }

    If you need it to be set for only specific submit button, while leaving others shown, you would need to apply the same code, but with slightly different code, like this:

    #id_1 button.form-submit-button {
        display: none;
    }

    Where the #id_1 is actually depending on your form setup and is usually different for each form (unless it is cloned).

    You can however see how to find it in this guide: How to apply custom CSS to a particular field

    We are of course here if you need any assistance with this.

    All of the CSS codes should be added to your form by following these steps: Inject Custom CSS Codes