Hi all
New here. I have a problem with my Print Preview. It creates a lot of extra white space for unknown reasons, it cuts off the post suddenly and the word Cancel appears at the bottom even though I can't find that word anywhere in my code. I am using the Clear template (having stripped it down to be almost blank) and had created a print method for my stylesheet to eliminate the header/footer/sidebar from printing. Unfortunately, it just looks ugly. I've tried editing the css in a few different ways, read the WordPress Print Stylesheet tips, and have tried to find some answers online to no avail. All I want is a nice and clean print stylesheet that prints the whole page! Take a look at this page in Print Preview and see for yourself: http://www.mississaugascrabble.com/category/stats/
@media print {
/* If printing the page, get rid of the sidebar and comments */
body { background:white; color:black; margin:0 }
#wrapper { height: 0; width: 0%; }
#header { height: 0; margin: 0; padding: 0; }
#footer { height: 0; margin: 0; padding: 0;}
#footer-sidebar { height: 0; }
#sidebar { display:none }
#sidebar1 { display:none }
#sidebar2 { display:none }
#content { margin-top:0; margin-left:0; float:left; width:auto }
.title { display: none; }
.meta { display: none }
#main { margin-top:0; margin-left:0; float:none; width:auto; }
.comments { display: none; }
#logo { margin: 0; padding: 0; display:none !important; }
#menu { margin: 0; padding: 0; display:none !important; }
.navigation { display: none; }
#blog-title { display: none; }
.comments { display: none; }
}