Hi Guys,
Is there a quick print CSS hack that would remove the header, nav logo and footer and would only print the main content with style?
Thanks,
D.
Hey dhuet!
You can check some informations here:
http://www.joshuawinn.com/css-print-media-query/
on how to use the following to make your print CSS work out.
Let us know if you have any extra questions.
Regards,
Basilis
Hi,
it seems to work . However I left navigation container is style showing.
Thanks,
D
Hi!
However I left navigation container is style showing.
No idea what you mean with this sentence. Do you want navigation to show up in your print.css?
Regards,
Andy
Sorry, I meant the left side navigation not yo show. I’d like to the content to print the full page.
Thank you.
Hey!
You need to add this inside the print media query:
.responsive.html_header_left #main {
margin-left: 0;
}
Cheers!
Ismael
Bingo!
Thank you Ismael.
D.