Split Terms and Public notes to dedicated pages

Hi @davsch

This is how I solved it:

In the Content Tab (below the closing div from id=body)

<div class="page-break" contenteditable="false"></div>

<div id="public-notes">
    $public_notes
</div>

In the includes Tab

/* Defines a class for manual page breaks via inserted .page-break element */
div.page-break {
    page-break-after: always;
}

/* Define the styling of the div container which holds the public notes */
#public-notes {
    margin-top: 2cm;
}

In the Footer Tab

<div class="repeating-footerx" id="footer">
    <p data-ref="total_table-footer">$entity_footer</p>

    <script>
        // Clear up space a bit…
    </script>
</div>

Maybe this helps you…

2 Likes