Hey whdsolutions,
Thank you for the inquiry.
You can add this css query to exclude specific elements when printing pages as documents. This helps customize the print layout and ensures a cleaner representation on paper.
@media print {
/* All your print styles go here */
#top #main .sidebar {
display: none;
}
}
The css rule above should hide the sidebar, but you can define more elements to exclude or modify as needed.
Best regards,
Ismael