Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1428438

    The sidebars are causing all sorts of problems when pages need to be printed

    Screenshot-2023-12-18-184529

    How can this be fixed as our client prints pages out to view for meetings

    #1428465

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.