What are some ways to include content on every pag...
# ask-stanley-ai
a
What are some ways to include content on every page of an Advanced PDF/HTML template, other than putting it in the header or footer macros?
c
AI generated answer (using internal Slack threads):
Based on the conversations, there are a few ways to include content on every page of an Advanced PDF/HTML template, other than putting it in the header or footer macros: 1. Add the content at the end of your
body
content
: This won't be aligned to be right above the footer, but it will appear on every page. Here's an example of how you might do this:
Copy code
html
<body>
  <!-- Your content here -->
  <p>Your content that you want on every page</p>
</body>
2. Use a
table
element
: You can create a table and include it in your body content. This table will then appear on every page. Here's an example:
Copy code
html
<body>
  <!-- Your content here -->
  <table style="width: 100%;">
    <tr>
      <td>Your content that you want on every page</td>
    </tr>
  </table>
</body>
3. Use CSS to position content: You can use CSS to position your content in a specific place on the page. However, this might not work as expected in NetSuite's Advanced PDF/HTML templates due to limitations of the rendering engine. Please note that these methods might not work perfectly in all situations due to the limitations of the rendering engine used by NetSuite's Advanced PDF/HTML templates. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834157407
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.833652675
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.829485357
Please provide your feedback on this answer.
a
I don't think that <table> thing works like you say it will, because there is a table of list items on each order's PDF template, which is the main reason the PDF has multiple pages in the first place, and the table doesn't repeat on every page (thank goodness!) I also place tables with content after the item list table and they only appear on the last page. So no, I don't think your answer is correct this time.