Inserting a page break into a PDF

Reidy36

Suspended / Banned
Messages
915
Edit My Images
No
Hi guys,

Me again :-)

Got yesterdays issue sorted, however when i convert the web blog to PDF, some of the images are cut between two pages. This happens with 3 different PDF converters. Is there a way of adding a page break at all?

Thank you.
 
I don't know if there is a Page Break HTML tag (<br> is line break, not page break)
If you format the HTML like:

<html>
<head><title>title</title>
<style>
p { page-break-after: always}
</style>
</head>
<body>
<p>
Page1
</p>
<p>
Page2
</p>
<p>
Page3
</p>
</body>
</html>

Whilst the Web page won't have breaks, a pdf of the page should.
 
Last edited:
Back
Top