PDF / HTML footer... how to make it stick to the b...
# administration
j
PDF / HTML footer... how to make it stick to the bottom of page?
d
I feel like I might be misunderstanding what you're asking but I had to figure out how to add footers to some PDFs vs the native headers (I don't code at all) and this helped me get it done: https://stackoverflow.com/questions/47645803/netsuite-advanced-pdf-transaction-footer-print-at-bottom
j
Thanks @Dawn, this behaves funny when I add it to my template. It adds a header and some text at the bottom, but not on the first page
so this is actually how
Copy code
<macro id="nlfooter">
      <table class="footerSP" style="width: 100%">
        <tr>

        </tr>
        <tr>
          <td colspan="3" align="center">Quantity available represents items currently in stock as well as items on order to our warehouse.</td>
        </tr>
        <tr>
          <td colspan="3" align="center"> Prices do no include freight, duties or taxes where applicable.</td>
        </tr>
      </table>
      <table class="footer" style="width: 100%;">	<tr>
        <td colspan="3">&nbsp;</td>
        <td align="right" ><pagenumber/> of <totalpages/></td>
      </tr></table>
    </macro>
The include this in the body tag
footer="nlfooter" footer-height="30pt"
Copy code
<body header="nlheader" header-height="15%" footer="nlfooter" footer-height="30pt" padding="0.5in 0.5in 0.5in 0.5in" size="Letter">
Result