Hi
I have a stylesheet that looks like this:
body{
background: #333;
}
...
@media print {
body{
background: #fff;
color: #000;
font-size: 10pt
}
...
}
the print styles work ok and are applied when you go in print preview mode in your browser.
However I have a "print" button on the site, which when pressed, outputs the current page in print mode (same page, but containing only the relevent info, no menus, sidebar etc)
How can I enable the print styles in this page? If I include the stylesheet it will style it as the other pages...