Forum How do I...?

different content in footers

avine
Hi

One of our customers has a document with different sections. They would like to display different information in the footer according to the section for that page. eg.. A document with two sections, Investment Section and Fund Section may have

Page 1 footer: 'Investment Section' .
Page 2 footer: 'Investment Section'
Page 3 footer: 'Fund Section'

The document is dynamic so one does not know how many pages each section would be.

Currently we insert content into the footer with css:
@page {
@bottom-right {
content:flow(RightFooter);
}
}

.RightFooter{
flow:static(RightFooter, start);
}

and html like:
<div class='RightFooter'>Investment Section</div>

How could I as for this example show 'Investment Section' in the footer for the first two page and then on a new section like Fund Section show 'Fund Section' in the footer for the remaining pages?

Any help would be appreciated..

Regards
Andrew
jim_albright
.footer
{
flow:static(footer);
}

Add information along with the header for Investment like:

<h2>Investment</h2
<span @class='footer'>Investment stuff for footer</footer>

Jim Albright
Wycliffe Bible Translators

avine
Thanks!