Printing a Book

Re: Printing a Book

by John Provasnik -
Number of replies: 0
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;
}
}