I'm generation PDF in ColdFusion using <cfdocument>
and I wanted to display the footer only on the last page. I found a solution here which works great and will display the footer on the last page only.
If your footer is long you will need to add marginbottom to the <cfdocument>
tag in order to define the space, example:
<cfdocument format="PDF" unit="in" marginbottom="1.5" ... >
that means every page will have 1.5 inches of blank space at the bottom of it, is there a way to only apply that space only to the last page?