When we print a document we need to print some standard legal language on the back of every page. We have tried to do this by trying to force the text from the left page onto the next page and then insert the language as an image in the header. So we increased the margins as shown below:
@page:left {
@top { content: url(legal.jpg) }
margin-top: 11in;
margin-bottom: 0;
margin-left: 8;
margin-right: 0in;
}
This is definitely a hack. And unfortunately not a good one - the first word of the first line is always left behind on the left page (it is actually 'hidden' because it is pushed off the left page).
Any bright ideas on how we might do this?
@page:left {
@top { content: url(legal.jpg) }
margin-top: 11in;
margin-bottom: 0;
margin-left: 8;
margin-right: 0in;
}
This is definitely a hack. And unfortunately not a good one - the first word of the first line is always left behind on the left page (it is actually 'hidden' because it is pushed off the left page).
Any bright ideas on how we might do this?