May 12, 200421 yr Newbies I want to add a form feed so each record prints out on separate 8.5 x 11 sheets. The following is my code. [FMP-RECORD] <TR> <A HREF="xxx">[FMP-FIELD: Title]</A> </TR> [/FMP-RECORD] Is there a solution? Thanks
May 12, 200421 yr I got it to print on seperate pages using <DIV STYLE="page-break-after:always"></DIV> but did not see any records print. Hope someone else has the solution. [FMP-RECORD] <TR> <A HREF="xxx">[FMP-FIELD: Title]</A> </TR> <DIV STYLE="page-break-after:always"></DIV> [/FMP-RECORD]
May 12, 200421 yr The following seems to work ok in IE 5+, but i do not know how to add the header to each page. Someone else will have to help add the header to each page. <head> <STYLE> tr.page {page-break-after: always} </STYLE> </head> <body> FMP-RECORD] <TR class=page> <A HREF="xxx">[FMP-FIELD: Title]</A> </TR> [/FMP-RECORD] </body>
Create an account or sign in to comment