• Is it possible to use css so that printed page is horizontal as it shows on web page? Now columns are printed in one row vertical.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor twinpictures

    (@twinpictures)

    try adding the following print-only css:

    .panel-grid-cell {
       display: inline-block
    }

    The above can be added as-is to the print-css area in the plugin settings under Dashboard > Settings > Print-O-Maitc > Custom Print Page Style
    or, if a custom CSS is already being used, it would need to be wrapped in a @media print clause like so:

    @media print {
       .panel-grid-cell {
          display: inline-block
       }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Print columns on one sheet’ is closed to new replies.