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

Question

Question

Is There A Way to Make a Document Fit On One Page?

asked on March 18

We have a form that when printed puts it on 2 pages.  The document would almost fit on one page but it is just hanging off.  

 

Is there any way to force it to fit on one page?

0 0

Replies

replied on March 19

You could try some variations of adjusting the margin

@media print {
  @page {
    margin-top: 0.5in;
    margin-bottom: 0.75in;
    margin-left: 1.25in;
    margin-right: 1in;
  }
}

Another option depending on how your form looks is adjusting the padding above/below the form title

0 0
replied on March 23

Where do you do these settings at?  Is this in the JS or where exactly?

Thank you!

0 0
replied on March 23

Sorry, this is CSS

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

Sign in to reply to this post.