Hi,
I need to be able to define sections of a document that should not be included in the pages counter. I was able to reset the page counter but not the pages counter. I need the pages counter because they want the format "Page x of y" but the y always reflects the total pages in the document.
Here's what I have so far.
.header .page_numbers {
font-weight: bold;
content: "Page " counter(page) " of " counter(pages)
}
.contents {
counter-reset: page 1;
}
I need to be able to define sections of a document that should not be included in the pages counter. I was able to reset the page counter but not the pages counter. I need the pages counter because they want the format "Page x of y" but the y always reflects the total pages in the document.
Here's what I have so far.
.header .page_numbers {
font-weight: bold;
content: "Page " counter(page) " of " counter(pages)
}
.contents {
counter-reset: page 1;
}