You are viewing limited content. For full access, please sign in.

Question

Question

Hide "submit" button when the form is printed.

asked on May 12, 2021

We want to print out forms for our members.  Is there a way to not have the Submit button print on the form?

0 0

Replies

replied on May 13, 2021

You will need to add this to the CSS, @media print is the CSS class where you can customise the print layout of a webpage.

@media print {

.Submit{
display:none;
}
}
2 0
replied on May 16, 2021

Thank you - worked perfectly!

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.