The setup sheets are configured to print on:
If you choose a different paper size in the Print dialog, you may need to manually adjust the page margins in the cascading style sheet style.css. If you want, you can also change the page orientation (this affects the way the pages are displayed in the browser window as well).
To adjust the page margins:
/* A4 is 21.0cm x 29.7cm
left: 2.1cm;
top: 2.97cm;
width: 19.5cm;
height: 23.76cm;
For instance, for the Executive paper size (18.4 x 26.7), you could recalculate the width and height values as follows: width = 18.4 - 2x2.1 = 14.2 cm and height = 26.7 - 2x2.97 = 20.8 cm. You can, of course, decide to use totally different left and top margins as well.
To change the page orientation:
/* Formatting for the navigation frame. */.
@page {
size: 21.0cm 29.7cm portrait; /* a4 paper. */
}
@page {
size: 29.7cm 21.0cm landscape; /* a4 paper. */
}
@page {
size: 27.9cm 21.6cm landscape; /* US letter paper. */
}
If you are using a different paper size (such as Executive paper), make sure that you enter the correct page dimensions first.
/* TABLE-SPECIFIC FORMATTING: */.
table {
cellspacing: 2px;
width: 16.8cm;
table-layout: auto;
width: 25cm;