Background Info
We recently updated our CSS to use the BOOM! microformat - so far it's working nicely, perfect for generating books using HTML and CSS. For the purposes of Information Mapping, we added a new section type called a Map. Each Map starts on a new page, and should repeat the title with the string ", Continued" appended to the end of the Map title.
The Problem
I need to suppress the printing of headers on the first page of a division (div class="Map"). Here is a clip that shows the problem:
http://screencast.com/t/NjM4ZDJiMCSS Code
Here is a snippet of CSS code
@page map {
@top-center {
content: string(maptitle, first) ", Continued";
font-size: 1.5em;
}
}
@page map :first {
@top-center {
content: normal;
}
}