Skip to main content

Comments

2 comments

  • Prajakta

    frevvo does not have any property that would create custom headers or footers. But you might be able to achieve this using some HTML in a message control and a custom CSS class in your theme.

    I found this discussion on searching online. It might be the solution for your question.

    0
  • Forum User

    We are able to achieve the page break by creating a page break theme. We edited the form.css in the theme by adding:

    @media print {
            .page-break    {
        display: block;
            page-break-before: always;
        }
    }

    Then we created an empty message control and referenced the "page-break" css in the css class field.

    0

Please sign in to leave a comment.