1

Hi there,

I am trying to get my custom footer to appear on every page. Currently it is not showing on the first page.

My page opens with:

<page backtop="25mm" backbottom="14mm" backleft="10mm" backright="10mm" style="font-size: 12pt">

and the page footer is called like this:

<page_footer>
<table class="page_footer">
<tr>
<td style="width:100%;" colspan="2"><hr /></td>
</tr>
<tr>
<td style="width: 50%;>
www.testurl.com
</td>
<td style="width: 50%; text-align: right">
page [[page_cu]]/[[page_nb]]
</td>
</tr>
</table>
</page_footer>

I have read through all the support posts that I can understand and none of them solve this issue. Any ideas? I don't mind hacking the core code if necessary but have taken a look through html2pdf.class.php and could not find the line that tells the script not to put the footer on the first page.

I would really appeciate any help.

Will

2

I have figured it out!

I was calling the content of the page before calling the page_footer. Changing the order round fixed the problem.

Cheers,

Will