No borders on titlepage
Hi!
I have defined the following:
@page {
border-top: 1px solid black;
border-bottom: 1px solid black;
}
How can I prevent this from applying to the title page?
Thx for your great work
Stefan
-
Figured it out with the help of k15t:
Leave the regular border style as is and add an overwriting style for your static page. Let's say you have a static page called "Copyright" and set its page stye id to 'copyright'. You could do this in your Style formatter:
/* Generate border between header/footer and page content */
@page { border-top: 1px solid black; border-bottom: 1px solid black; }@page mycopyright { border-top: 0px solid black; border-bottom: 0px solid black; }
.copyright {page:mycopyright;}
Please sign in to leave a comment.
Comments
2 comments