I am able to set text on every print page but if I have to set image in place of text, what necessary changes do I have to make? Here’s the code I have used so far:
<div class="divFooter">UNCLASSIFIED</div>
CSS:
<style type="text/css">
@media screen {
div.divFooter {
display: none;
}
}
@media print {
div.divFooter {
position: fixed;
bottom: 0;
}
}
</style>
Thank you in advance.
Try something like this:
Of course, you can also do something like this instead without using any extra CSS:
There are lots of options, it really depends on what exactly you want to accomplish.