I need to remove the running header of book's title page, copyright page and all blank pages. How do i do it?
Forum › How do I...?
Remove running header in particular page
You can use a named page for these elements, for example:
You can also use @page:blank to select and style blank pages inserted by page-break-before: left/right.
@page intro {
@top { content: none }
}
.title, .copyright { page: intro }
You can also use @page:blank to select and style blank pages inserted by page-break-before: left/right.
The below worked perfectly:
@page:first {
@bottom-left { content: normal; }
@bottom-right { content: normal; }
}
@page:blank {
@bottom-left { content: normal; }
@bottom-right { content: normal; }
}
div.copyright {
page: copyright;
break-before: right;
prince-page-group: start;
}
@page:copyright {
@bottom-left { content: normal; }
@bottom-right { content: normal; }
}
@page:first {
@bottom-left { content: normal; }
@bottom-right { content: normal; }
}
@page:blank {
@bottom-left { content: normal; }
@bottom-right { content: normal; }
}
div.copyright {
page: copyright;
break-before: right;
prince-page-group: start;
}
@page:copyright {
@bottom-left { content: normal; }
@bottom-right { content: normal; }
}