Forum How do I...?

disable footer for some pages

mong
How do I disable footers for pages? I need to disable the page counter
on the first three pages of my document.

many thanks
mong
mikeday
If you are using a named page called "intro" for example, then you can do this:
@page intro {
    @bottom { content: none }
}
mong
May pages looks like

<div class="chapter">
content
</div>

andI try to name the page with

div.chapter { page: nofoot }

but it doesnt work. The definition for nofoot looks like

@page nofoot
{
size: A4 landscape
@bottom-left { content: none; }
@bottom-right { content: none; }
}


What do I missing?

Mong
mikeday
I think it needs a semicolon ';' after the page size, to show that is the end of the declaration.