Printing a Book

Printing a Book

by Julie Dillon -
Number of replies: 1

Running version 3.3.2

I need to print a book (resource), however when it prints a side menu  appears that is not related to the book and is my navigation menu. 

How do I remove this. I have purged all caches. 

This is the print preview: 










Then this is the printed PDF: 



Average of ratings: -
In reply to Julie Dillon

Re: Printing a Book

by John Provasnik -
Picture of Particularly helpful Moodlers Picture of Testers
You need to add some custom css to your site for printing. YOu need it to not display that block when in print view. I dont know what block that is, but here is an example:

@media print {
aside#block-region-side-pre {
display: none;
}
}