Viewing 4 replies - 1 through 4 (of 4 total)
  • I used the following with some sucess in the print-o-matic settings.
    Custom Print Page Style…This is working in Chrome and FireFox but not IE.

    @media print {
      * { margin: 0 !important; padding: 0 !important; }
      #controls, .footer, .footerarea{ display: none; }
      html, body {
        height:90%;
        overflow: hidden;
        background: #FFF;
        font-size: 9.5pt;
      }
    Plugin Author Baden

    (@baden03)

    what is not working in IE, the CSS or the plugin in general?
    if it’s only the CSS, try not using the media print wrapper. Simply add your css to the print-page css section of the plugin options page.

    Hi… Just the CSS.

    I’m trying to always scale the page to print on one sheet. With the media print wrapper, I get the one page print on Chrome and FireFox. Without the media print wrapper, it does not scale down to print on one page for any browser.

    I do love the plugin!

    Plugin Author Baden

    (@baden03)

    Hmmm, ok… which version of IE are you having a problem with? IE only introduced support for media queries in version 9.

    Also, I think you are missing a closing bracket:

    @media print {
        * { margin: 0 !important; padding: 0 !important; }
        #controls, .footer, .footerarea{ display: none; }
        html, body {
            height:90%;
            overflow: hidden;
            background: #FFF;
            font-size: 9.5pt;
        }
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘print onto one page’ is closed to new replies.