Add fixed Footer on Print
The JS
The CSS
.page-footer {
display:none;
}
@media print{
.page-footer {
position:fixed;
display:block;
bottom:0;
}
}How to implement

Last updated
Was this helpful?
.page-footer {
display:none;
}
@media print{
.page-footer {
position:fixed;
display:block;
bottom:0;
}
}
Last updated
Was this helpful?
Was this helpful?
<div class ="page-footer">YOUR FOOTER TEXT</div>