Forum Moderators: not2easy

Message Too Old, No Replies

Format Printing - Landscape Legal Style

         

ricecookie

5:18 pm on Jul 12, 2004 (gmt 0)



I am trying to figure out how to print a page in Landscape that is the standard 8.5 x 14 legal size. I have no real knowledge of CSS, so code would be very much appreciated.

photon

8:14 pm on Jul 12, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to WebmasterWorld [webmasterworld.com]!

I believe that printing is controlled by the user's browser, so you won't be able to control that.

benihana

8:24 pm on Jul 12, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



you can use a stylesheet specifically designed to print the way you require, and call it like this:

<LINK rel="stylesheet" type="text/css" media="print" href="printstyle.css">

more here [w3.org]

ben

drbrain

8:39 pm on Jul 12, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



@page {
size: 14in 8.5in;
}

CSS2 section 13.2.2 Page size: the 'size' property [w3.org]

photon

1:16 pm on Jul 13, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Those settings format the page, but the user still has to pick the correct settings from print dialog--or am I wrong?