Hello,
We are using PDF Crowd to convert a HTML newletter to PDF.
I'm finding the content is getting chopped oddly when the next pdf page gets generated. Sometimes it will chop through a line of text. In the example below it cuts a section heading:

It's a CMS system, so the content is different every time. I've been trying to control the breaks by using:
@media print {
div {page-break-inside: avoid;}
}
and I've tried display table; also.
Is there anything else CSSey that you can suggest? Or some other solution? Thanks.