PDA

View Full Version : Printing a layer ?



Neuhaus3000
January 18th, 2008, 10:01 AM
Hello All,

Can someone tell me how I can print a css layer ?
I will add a scroll area in the middle of a page and I want to
be able to print the content...

Thanks !

neuhaus3000 :thumb2:

Templarian
January 18th, 2008, 11:27 AM
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
Simply redo your CSS for the print page. Probably hide what you don't want to show up and expand your scrollable div.

Neuhaus3000
January 18th, 2008, 12:03 PM
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
Simply redo your CSS for the print page. Probably hide what you don't want to show up and expand your scrollable div.

Sounds great ! You wouldn't have an example page ? :shifty:

Thanks !

neuhaus3000

Pasquale
January 19th, 2008, 10:08 AM
#idName{display:none;}

;) it's serially as easy as that.