A .css definition of min-height on a page element which controls width and height is causing a problem when pages are printed.
#wrapper {
position: relative;
width: 770px;
margin: 0 auto;
text-align:left;
background: #fff;
overflow:hidden;
min-height: 875px;
}
The content does not flow over from one printed page to the next but seems to stay in one 'lump' and push down the rest of the content
Is there any way of remedying this in the print.css file I am creating?
Thank you so much for taking the trouble to respond. In fact it was the background image which was causing all the trouble. I substituted this in the print.css with a 1pixel by 1 pixel image and all was well.