For duplex printing, I need blank page inserted before each chapter if it doesn't start on a 'right' page.
I am using the following code, but I need the 'pages' counter not to count the blank page.
My output is "Page 7 of 8" but there are really only 7 pages excluding the blank one.
Thanks in advance.
I am using the following code, but I need the 'pages' counter not to count the blank page.
h1 { page-break-before: right; }
@page:blank {
@top{
content: normal;
}
@bottom {
content: normal;
}
}
My output is "Page 7 of 8" but there are really only 7 pages excluding the blank one.
Thanks in advance.
Edited by lhornaday