Announcement

Collapse
No announcement yet.

Print Order Confirmation Unreadable

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Print Order Confirmation Unreadable

    I have been banging my head on the wall over this one today. The default ORDP (printable Invoice) is fine on screen but when trying to print it the text is bold and unreadable. Is anyone else seeing this with the Suivant theme? I see there are some print styles setup in the print.css file and they look fine. I tried changing the font /size but it does not make it readable.
    Highly caffeinated
    http://www.coffeehouseexpress.com

    #2
    Re: Print Order Confirmation Unreadable

    Does it print poorly in a different browser? It may be your browser changing things.
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: Print Order Confirmation Unreadable

      Sorry, I should have tried this before. Yes it looks fine in Firefox and Internet Explorer, but Google Chrome is where the problem occurs. Any idea where to look to fix for Chrome?
      Highly caffeinated
      http://www.coffeehouseexpress.com

      Comment


        #4
        Re: Print Order Confirmation Unreadable

        Hi Jim,

        Looks like this is a Webkit only issue. To correct it, in your "print.css" stylesheet at line 31, remove both the "-webkit-filter" and "filter" declaration. This will correct the screen display as well as the actual printed page.
        Matt Zimmermann

        Miva Web Developer
        Alchemy Web Development
        https://www.alchemywebdev.com
        Site Development - Maintenance - Consultation

        Miva Certified Developer
        Miva Professional Developer

        https://www.dev4web.net | Twitter

        Comment


          #5
          Re: Print Order Confirmation Unreadable

          Originally posted by Matt Zimmermann View Post
          Hi Jim,

          Looks like this is a Webkit only issue. To correct it, in your "print.css" stylesheet at line 31, remove both the "-webkit-filter" and "filter" declaration. This will correct the screen display as well as the actual printed page.
          Matt, thank you...that did the trick!
          Highly caffeinated
          http://www.coffeehouseexpress.com

          Comment


            #6
            Re: Print Order Confirmation Unreadable

            Matt,

            Just tried this fix on three separate sites...no change. Display still looks as attached:
            Bruce Golub
            Phosphor Media - "Your Success is our Business"

            Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
            phosphormedia.com

            Comment


              #7
              Re: Print Order Confirmation Unreadable

              Hi Bruce,

              Did you remove the filter calls from within the BODY declaration or the *,*:before,*:after one?
              Matt Zimmermann

              Miva Web Developer
              Alchemy Web Development
              https://www.alchemywebdev.com
              Site Development - Maintenance - Consultation

              Miva Certified Developer
              Miva Professional Developer

              https://www.dev4web.net | Twitter

              Comment


                #8
                Re: Print Order Confirmation Unreadable

                The one for

                *:after one?

                that's what was on line 31 (or closest to it), removing it from body works.

                For prosperity

                Code:
                body {
                      background-color: #fff;
                      color: #000;
                    /*  -webkit-filter: grayscale(100%) !important;
                      filter: grayscale(100%) !important; */
                      font: 0.57em / 1.3 Helvetica, Arial, sans-serif;
                   }
                Bruce Golub
                Phosphor Media - "Your Success is our Business"

                Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
                phosphormedia.com

                Comment

                Working...
                X