1

Hello, I'm using the html2pdf v4.03 library to create a formal note with a format as follows:

<page heading>
<content>

<page heading>
<more content>

My page heading consists of an image, and there are as many pages as the content (Which is of variable length) needs. This length is unknown.

The problem I have encountered is that the heading image does not push the text down. I've tried changing the page's top margin, but that pushes down the heading image as well.

The expected result should be something as follows:

___________________________
[header image]
<content>
<content>
<content>
___________________________
[header image]
<content>
<content>
<content>
___________________________



And the result I am getting is this:

___________________________
[header image] <content>
<content>
<content>
___________________________
[header image] <content>
<content>
<content>
___________________________


Thanks!

Pablo