Forum Moderators: open
/* here come usual styles */
BODY {
...
}
BODY DIV.menu {
...
}
/* here come elements styles for print version */
BODY.print {
...
}
BODY.print DIV.menu {
display: none;
}
and so on..
and then set onclick containing something like:
document.getElementsByTagName('BODY')[0].className = 'print';