Aaron McCausland
01/13/2025, 10:51 PMCeligo AI
01/13/2025, 10:51 PMAI 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:
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:
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.
******Celigo AI
01/13/2025, 10:51 PMSlack 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
Celigo AI
01/13/2025, 10:51 PMAaron McCausland
01/13/2025, 10:54 PM