Forum How do I...?

How do I start a footer count with prince on a particular page of the PDF ?

flylion
Let's say you have 10 pages of PDF, the first 3 pages of the footer are not displayed, and the footer counts from the fourth page
mikeday
I think that would require something like this:
@page :nth(1) { @bottom { content: none } }
@page :nth(2) { @bottom { content: none } }
@page :nth(3) { @bottom { content: none } }
flylion
The problem has been solved. Thank you very much!
flylion
@mikeday