Yes that worked great. Thank you for the timely response.
From: Manuel Mall [mailto:[EMAIL PROTECTED] Sent: February 6, 2008 6:05 PM To: '[email protected]' Subject: RE: Padding between rows Glenn, You are setting the font-size on an <fo:inline> element. This means the enclosing <fo:block> still has the default font-size of 12pt (unless you have set a different font-size on a enclosing element not shown in your snippet). This in turn determines the line height used for the lines in the block. Set the font-size on the enclosing block and it will most likely be fine. Manuel ________________________________ From: Glenn Brand [mailto:[EMAIL PROTECTED] Sent: Thursday, 7 February 2008 10:42 AM To: [email protected] Subject: Padding between rows I have padding set to "padding="0pt" but I still get a lot of space between rows. See attached PDF. The top of the PDF where it reads: EyeCare Associates, Inc. 3165 Green Valley Road Birmingham, AL 35243 www.webeca.com Phone (205) 967-2103 Fax (205) 967-2119 Should look like the area that reads this: Glenn Brand 6555 Nelson Avenue West Vancouver, AL Primary Insurance Medicare Secondary Insurance I have this for the first area: <fo:table-row> <fo:table-cell border-style="none" border-width="0pt" padding="0pt" background-repeat="no-repeat" display-align="center"> <fo:block> <fo:block> <fo:inline font-family="Arial" font-size="9pt" font-weight="bold"> <xsl:value-of select="/Recordset[1]/spPatientStatement[1]/Location_BusinessName[1]"/> </fo:inline> </fo:block> </fo:block> </fo:table-cell> And this for the next area that I would like the top to be the same. <fo:table-row> <fo:table-cell border-style="none" border-width="0pt" border-color="transparent" background-repeat="repeat" display-align="center"> <fo:block font-size="9pt"> <fo:block> <fo:inline font-family="Arial"> <xsl:value-of select="concat(/Recordset[1]/spPatientStatement[1]/PrimaryFirstname[1],' ',/Recordset[1]/spPatientStatement[1]/PrimaryLastname[1])"/> </fo:inline> </fo:block> <fo:block> <fo:inline font-family="Arial"> <xsl:value-of select="/Recordset[1]/spPatientStatement[1]/PrimaryAddress1[1]"/> </fo:inline> </fo:block> <fo:block> <fo:inline font-family="Arial"> <xsl:value-of select="/Recordset[1]/spPatientStatement[1]/PrimaryAddress2[1]"/> </fo:inline> </fo:block> <fo:block> <fo:inline font-family="Arial"> <xsl:value-of select="concat(/Recordset[1]/spPatientStatement[1]/PrimaryCity[1],', ',/Recordset[1]/spPatientStatement[1]/PrimaryState[1],' ')"/> </fo:inline> </fo:block> <fo:block> <fo:inline font-family="Arial">Primary Insurance <xsl:value-of select="/Recordset[1]/spPatientStatement[1]/PrimaryPlanName[1]"/> </fo:inline> </fo:block> <fo:block> <fo:inline font-family="Arial">Secondary Insurance <xsl:value-of select="/Recordset[1]/spPatientStatement[1]/SecondaryPlanName[1]"/> </fo:inline> </fo:block> </fo:block> </fo:table-cell> </fo:table-row>
