I am creating a 5 page document HTML document with variable table sizes. I am hard coding page breaks after the <DIV> for each page. To assure that all of my page numbers at the bottom of each page is in approximately the same location, I have created a recursive template to enter a certain number of <BR/> elements before the page # footer. However, the <BR/> isn't doing the trick. I've searched high and low for the right character to enter and nothing has worked:
Also, should I use line position to determine the number of blank lines I need instead of the number of rows in my variable tables?
Thanks for any and all help !!!!
Code:
<xsl:variable name="newline"> <!-- <xsl:text> </xsl:text> <p> </p> [url]http://www.danrigsby.com/blog/index.php/category/xslt/[/url] * <br/> <xsl:value-of select="'
'"/> <xsl:text>
</xsl:text> --> <br/>* <br/> </xsl:variable>
Thanks for any and all help !!!!
Comment