PDFreactor:
3.0.2995 (2008-04-15)
edit-on Pro:
5.2.221 (2008-06-23)
edit-on JavaBean SDK:
5.1.290 (2007-11-07)
TYPO3 Extension:
2.0.2 (2007-06-14)
3.3 How can I place a footer?
You can set a footer using generated content to write into a page margin box at the bottom of the page box. The content you set in a page margin box will appear on every page, unless specified otherwise via CSS.
The content property can contain text, textual content or page numbers. For example, this code will write the content "RealObjects GmbH" in the bottom center margin box of every page:
@page {
@bottom-center{
font-family: Times New Roman, serif;
font-size: 0.5cm; text-align: center;
content: "RealObjects GmbH";
}
}