Newbies Billn Posted May 12, 2004 Newbies Posted May 12, 2004 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
bnix Posted May 12, 2004 Posted May 12, 2004 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]
bnix Posted May 12, 2004 Posted May 12, 2004 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>
Recommended Posts
This topic is 7570 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now