I have an h1 that's defining my chapter starts. I have defined breaks for the h1s:
All is good: http://cl.ly/image/2p3G0o1D2H15
So now I'm trying to avoid having page numbers on those chapter pages, so I name the page:
And now all of a sudden there's a page break after: http://cl.ly/image/0U370J1K3V3q
I've tried to add
What am I doing wrong?
h1 {
page-break-before: always;
}
All is good: http://cl.ly/image/2p3G0o1D2H15
So now I'm trying to avoid having page numbers on those chapter pages, so I name the page:
h1 {
page-break-before: always;
page: chapterstart;
}
And now all of a sudden there's a page break after: http://cl.ly/image/0U370J1K3V3q
I've tried to add
page-create-after: avoid
, but it didn't change anything.What am I doing wrong?