Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
Ron, isn't a header at the bottom called a footer? I'm not sure how to customize header/footer content with Chrome print. You could hide either header/footer with css page's margin though. As for landscape printing it's possible with css as well:
<head>
<style>
@media print{
@page {
size: landscape;
margin-top: 0 !important; /* to hide header */
}
div.page {
padding-top: 50px;
}
}
</style>
</head>
<body>
<div class='page'>
Hello world 1
</div>
<div class='page-break'></div>
<div class='page'>
Hello world 2
</div>
</body>
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo