Forum Moderators: open
Of course what I could do is create a second page with no graphics and links and then place a printable button on the original page that opens the printable page in a new window. This though would be very time consuming.
Can anyone else recommend another method or any suggestions ?
I should mention all my pages are .shtml or .htm
Say you have 3 divs
then in your css just do something like this:
@media print {
#header {
display: none;
}
#leftnav {
display: none;
#content img {
display: none;
}
}
and of course you can set your body margins and font sizes and anything else you need to.
If you have a table based layout then probably the best you could do would be to wrap certain elements like photos in divs (or just give 'em id's ) and do as above. But there is no easy way that I can see ;-(
Nick