• In inc/css/print.css it is setting the print page’s page size to A4, orientation to landscape, and margins to 0 with this bit of CSS

    
    @page {
      size: A4 landscape;
      margin: 0;
    }
    

    While that might be good on some sites, that’s an unexpected side effect. It seems quite outside what this plugin should be doing. I would suggest that should be removed (or at least made optional.)

    Thoughts?

  • The topic ‘Why is this plugin setting the print dimensions?’ is closed to new replies.