Hi @Cooperative5CEE ,
If you are generating from HTML, your best bet is to use CSS media queries.
<div class="footerText">My Footer Text</div>
@media screen {
div.divFooter {
display: none;
}
}
@media print {
div.footerText {
position: fixed;
bottom: 0;
}
}
If you do that, then you would set Include Header Folder to false.