> -----Original Message----- > From: herman [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 04, 2006 2:27 PM > > Hi, > > Page numbers work fine, but they appear a bit too low on the > page (too close to the page border). This is what i do: > > <fo:root font-family="TimesNewRoman"> > <fo:layout-master-set> > <fo:simple-page-master master-name="my-page"> > <fo:region-body margin="1in"/> > <fo:region-after region-name="footer" extent="11in" > display-align="after"/> > </fo:simple-page-master> > </fo:layout-master-set> > ... etc > > I've played around with adding and changing attributes, but > the page number doesn't change a millimeter from its place. How come? > > Many thanks in advance, > Herman > > -- > View this message in context: > http://www.nabble.com/page-number-position-tf2382050.html#a6638620 > Sent from the FOP - Users mailing list archive at Nabble.com.
Herman, For fo:region-*, extent attribute value gives the area size from relevant page margin. In your case, you have a fo:region-after with a 11in width... Your XSL-FO is quite uncomplete. Where is your page number? >From witch page border is it too close? If you want to move your page number, you can either use indent or space related properties (like start-indent, space-before, margin, padding, etc.) or use a fo:block-container in absolute position (which is easy to use in static regions) HTH, Pascal --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
