Page number on documents

Good day all

I have read many posts that try to address having page numbers in documents.

Is this addressed and if so, how ?

Thank you

J

It’s possible on transaction documents such as invoices, quotes, orders etc.

Your HTML theme would need to include this snippet:

<style>
@page {
    @bottom-center {
      content: counter(page);
      font-size: 0.8em;
    }
}
</style>

When new themes are rolled out to reports, the same will be possible on reports too.

1 Like