You should be able to either add the following to your table:

  <fo:table-column column-width=".2cm"/>

(and then add the fo:table-cell throughout)

or, since you've got a table border & background, create a BLIND TABLE (as described in the FAQ) nesting the current table in another table like this:

<fo:table background-color="#ABABAB" padding="2pt" border-width=".2mm" border-style="solid" border-color="black">
<fo:table-column column-width=".2cm"/>
<fo:table-column column-width="15.8cm"/>
<fo:table-body..>
<fo:table-row..>
<fo:table-cell/>
<fo:table-cell>
<!-- add your current table here -->
<fo:table background-color="#ABABAB" padding="2pt" border-width=".2mm" border-style="solid" border-color="black">
<fo:table-column column-width="5.8cm"/>
<fo:table-column column-width="4.5cm"/>
<fo:table-column column-width="5.5cm"/>


HTH!

Web Maestro Clay

[EMAIL PROTECTED] wrote:
I want to display my table 2 mm more to the right, but i can't get it
right, here is the code.
can someone help me?

<xsl:template name="heading">
    <fo:block space-after.optimum="10pt">
      <fo:table background-color="#ABABAB" padding="2pt" border-width=".2mm
"  border-style="solid" border-color="black">
        <fo:table-column column-width="5.8cm"/>
        <fo:table-column column-width="4.5cm"/>
        <fo:table-column column-width="5.5cm"/>


--
Clay Leeds - [EMAIL PROTECTED]
Web Developer - Medata, Inc. - http://www.medata.com
PGP Public Key: https://mail.medata.com/pgp/cleeds.asc


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



Reply via email to