Koes, Derrick wrote:
If my image is centered, how do I get the next line (of text) to start at
the left edge of the image?

That's a though one. I suggest using a table for centering, and put the text in another row, roughly: <fo:table table-layout="fixed" width="100%"> <fo:table-column column-width="proportional-column-width(1)"/> <fo:table-column column-width="{$your-image-width}"/> <fo:table-column column-width="proportional-column-width(1)"/> <fo:table-body> <fo:table-row> <fo:table-cell/> <fo:table-cell> <fo:block> <fo:external-image src="..."/> </fo:block> </fo:table-cell> <fo:table-cell/> </fo:table-row> <fo:table-row> <fo:table-cell/> <fo:table-cell number-of columns spanned="2"> <fo:block>text...</fo:block> </fo:table-cell> <fo:table-cell/> </fo:table-row> </fo:table-body> </fo:table>

J.Pietschmann


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to