Reputation: 1394
How can I resize the footer in a cfdocument creating a PDF?
<cfdocument format="pdf">
<cfdocumentitem type="header">
My Header
</cfdocumentitem>
<cfdocumentitem type="footer">
This text I want to be my footer but I want it to be much bigger. I have a lot of legalize and I need more room so it will be readable.
</cfdocumentitem>
</cfdocument>
Any suggestions?
Upvotes: 2
Views: 1176
Reputation: 865
On the cfdocument
tag, try using the marginbottom
attribute to bring up the lower margin of the content area.
Upvotes: 3