[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[xsl] XSL-FO - Region-Body overflowing into Region-After
Subject: [xsl] XSL-FO - Region-Body overflowing into Region-After
From: "craig webber" <craigwebber@xxxxxxxxxxx>
Date: Sun, 31 Jul 2005 20:16:28 +0000
|
The content in my Region-Body is "overflowing" over or into the
Region-Afteron, where the page numbers are. Can anybody see what I'm doing
wrong? Code below, thanks Craig.
<fo:simple-page-master master-name="body"
page-height="29.7cm"
page-width="21cm"
margin-top="1.5cm"
margin-bottom="1.5cm"
margin-left="2.5cm"
margin-right="2.5cm">
<fo:region-body margin-top="2cm"/>
<fo:region-before extent="3cm"/>
<fo:region-after extent="1cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="body" >
<fo:static-content flow-name="xsl-region-before">
<fo:block text-align="end"
font-size="14pt"
color="grey"
line-height="14pt">
Consultations
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after">
<fo:block text-align="center"
font-size="10pt"
line-height="14pt" >
<fo:page-number/>
</fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<xsl:apply-templates select="publications/Items/Item">
<xsl:sort select="name" order="ascending"/>
</xsl:apply-templates>
</fo:flow>
</fo:page-sequence>
_________________________________________________________________
We've overhauled MSN Search Toolbar - FREE download!
http://toolbar.msn.co.za?DI=1054&XAPID=2083
|