• Hi David, thank you for all of your good help for the Genesis Community. I am using G2 with Agency. The only way I can get Print Style towork is if single view articles are printed in landscape mode. Even this wat site title (header left) is truncated.

    If I try to print in portrait, the left side gets truncated. If I try to scale content area gets smaller but moves to left of paper v staying centered and fitting in the printed page.

    Are there any css fixes for Agency?

    Thanks in advance.

    https://www.ads-software.com/plugins/genesis-printstyle-plus/

Viewing 1 replies (of 1 total)
  • Plugin Author David Decker

    (@daveshine)

    @worldview:
    Hi there!
    Thanks for your feedback!

    The issues you are having come from bad implemented responsive design media queries in the CSS. This effects various other (StudioPress) child themes obviously.

    The problem is, I cannot add lots of additional child theme specific CSS to the print styles as it will be much overhead and also very time consuming to maintain all that.

    However, I had another request for stuff like that, so to fix the truncated content/ images please do the following steps:

    1.)
    Create a file named “print-additions.css” (via a code/ text editor, NOT Word etc.)

    2.)
    To that file add the following rules:

    #header,
    #content,
    #content img {
    	max-width: 100% !important;
    	overflow: hidden !important;
    }

    If you have problems with the footer credits, also add this below:

    #footer,
    #footer .creds {
    	clear: both;
    	display: none !important;
    	float: none !important;
    	margin-top: 40px;
    	width: 99% !important;
    }

    3.)
    Save the file!

    4.)
    Upload the file via FTP to your child theme root folder, in your case it would be:
    /wp-content/themes/agency/print-additons.css

    This should do it. My plugin will pick up the additional file and add the rules to the print style rules.

    Hope that helps, Dave ??

Viewing 1 replies (of 1 total)
  • The topic ‘Problems printing in Agency’ is closed to new replies.