Web Pages Not Printing Properly In Any Browser

Latest Reply from EndlessWebSolutions at 2014-10-30 16:15:11 Solution
I've got our website up and running with the full paid Travel theme.

However, it's not possible to print the web pages correctly.

In fact, they don't print properly in your Demo either - wish
I'd tried that before I purchased ...

But ...

Now, what can I do to get those pages printing properly?



I've created several other sites using purchased WP themes that had no problem at all. So it never occurred to me to check the demo.


Please let me know what I can do ASAP

Thanks.


ILWTI & ILWTI Medical Missions

site address: ilwtimedicalmissions.com


Hi!
Please, clarify the problem you have.
you need to add a print.css file into either the theme file and call it on the header or in your root and call it on the header.

the one I use:

@media print {
BODY {
font-family: Verdana, Arial, Tahoma;
font-size: 12px;
color: #000000;
}
IMG {
max-width: 100%;
}
P {
word-wrap: break-word;
}
.Center {
margin: 0px auto 0px auto;
}
#Outline {
width: 90%;
margin-left: auto;
margin-right: auto;
padding: 10px;
border: 1px solid #000000;
}
#BlogTitle {
font-weight: bold;
font-size: 16px;
margin-bottom: 5px;
}
#BlogDate {
margin-top: 5px;
margin-bottom: 10px;
}
#BlogContent {
padding: 10px;
margin-top: 10px;
}
.Divider {
width: 80%;
height: 1px;
color: #000000;
}
#CommentTitle {
font-weight: bold;
font-size: 16px;
padding-bottom: 10px;
}
.CommentDate {
margin-top: 5px;
margin-bottom: 10px;
}
.CommentContent {
padding: 2px 10px 10px 10px;
}}

thats the file print.css

then call it via

<link rel="stylesheet" href="url to file" type="text/css" media="print" />

that should take care of the print issue, adjust the css as needed.

Leave a reply

Add codeAdd image