Add this to your stylesheet to solve the problem:
form {margin: 0px 0px 0px 0px; }
source(s): http://weblogs.macromedia.com/cantrell/archives/2003/05/
git_rid_of_anno.cfm
A record of solutions to when I get stuck on some problem. When I think 'I know I have found the answer to this before' I can just search my blog.
form {margin: 0px 0px 0px 0px; }
<style type="text/css">
html { height: 100.1%; }
</style>
<style type="text/css">
@media print
{
div.headerbox{ display:none; }
}
</style>
<div class="headerbox">... hidden when printed</div>
<div class="otherbox">... not hidden when printed</div>
<style type="text/css">
@media print
{
div#headerbox{ display:none; }
}
</style>
<div id="headerbox">... hidden when printed</div>
<div id="otherbox">... not hidden when printed</div>