I created a custom skin and am trying to finish my Print CSS. I have been testing it and when I go to file > print preview my text keeps on getting cut off on the bottom. It doesn't continue to the next page it just stops there.
Ex: Pag1: text and everything looks good. Page 2: text doesn't show up at all or continue from the first page. It is completely blank. Page 3: Prints my footer line correctly.
Am I missing something in my print css that would cause the text to stop after the first page and not continue? Here is some of my print css code :
@media print {
@page { margin: 25 }
p {
font-size: 16px;
position: static; display: inline;
}
.Normal {
font-size: 16px;
position: static; display: inline;
}
.normal {
font-size: 16px;
position: static; display: inline;
}
.SEOMenu{
display:none;
}
.hideonprint {
display:none;
}
body {
margin: 25px;
padding: 25px;
font-size: 16px;
float: none;
}
}