You need to sign in to do that
Don't have an account?

Page Breaks On Quotes : How?
We are producing some great quotes using standard SFDC quoting and the only thing we cannot do to meet the customers needs is inserting a page break in a PDF that is generated. It absolutely kills us that we might have to write a VF page just simply to insert a page break. Has anyone come up with a solution?
Also, would be absolultey great if the pages numbered as well but that would be gravy. Bottle of your favorite wine to anyone that emails us a solution. Support@ioniasolutions.com
Using CSS this is supposed to work.....
This example insert a page break Before ANY <h1> level element
<style>
@media print
{
h1 {page-break-before:always}
}
</style>