I am doing a print functionality. The problem I am getting is that the page, which is being printed, is not retaining it's CSS formatting. I am getting plain text on print without CSS. Does anyone know how to print page with all it's CSS formatting unchanged.

link|improve this question

62% accept rate
feedback

1 Answer

Most likely the site you are trying to print has a custom stylesheet for printing. This stylesheet is often simplified and made to fit onto a printable page. I don't think there is much you can do about it unless you have the ability to modify or remove the print CSS file.

Intro to print style sheets.

Example markup for one.

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

Perhaps there is some way to use javascript to programmatically remove the style sheet, but I am not sure.

link|improve this answer
do you mean to say..i need to create another stylesheet called print.css for print media?isn't there any other way instead of creating seperate stylesheet for printing? – Amol Kolekar Jan 6 at 4:40
I am saying that sites print with all CSS by default. If you aren't printing with CSS then the page already has a print CSS sheet (or perhaps @media="screen" defined which is preventing the styles from coming through. I guess there is a remote possiblity that there is a browser setting that does this. You could test by trying to print from a separate browser. If you provide a link to the site in question someone you could tell you for certain. – mrtsherman Jan 6 at 5:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.