Nathan Stanford
Nathan Stanford

Reputation: 1394

cfdocument how can I resize the footer height?

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

Answers (1)

Justin Scott
Justin Scott

Reputation: 865

On the cfdocument tag, try using the marginbottom attribute to bring up the lower margin of the content area.

Upvotes: 3

Related Questions