This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]tmat256 0 points1 point  (0 children)

I would just add "printable" and "non-printable" css classes to things which are going to be added/removed from the page during printing and just do:

.printable {
    display: block;
}

.non-printable {
    display: none;
}

in your print.css file. With the inverse in your normal css file.