Using fop-1.0. I have a two column table. The first column spans the table. There are five rows in the table. The cells are colored. Between each row there is a thin (1pt at most, perhaps a single pixel) line. I've tried forcing colored borders over the middle ground with border-collapse="collapse" (which, if I read the compliance list correctly, is now supported).
How many other ways can I a) be generating this line and b) how to get rid of them. Looking like I'll miss sending to the printers Monday :(
<?xml version="1.0" encoding="UTF-8"?> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xalan="http://xml.apache.org/xslt" xmlns:ec="xalan://com.amirsys.utilities.ElementConversion"> <fo:layout-master-set> <fo:page-sequence-master master-name="sidebars"> <fo:repeatable-page-master-alternatives> <fo:conditional-page-master-reference page-position="any" odd-or-even="odd" master-reference="sidebar-odd" blank-or-not-blank="any" /> <fo:conditional-page-master-reference page-position="any" odd-or-even="even" master-reference="sidebar-even" blank-or-not-blank="any" /> </fo:repeatable-page-master-alternatives> </fo:page-sequence-master> <fo:simple-page-master page-width="8.5in" page-height="11in" master-name="sidebar-even"> <fo:region-body margin-left="0.75in" /> <fo:region-start region-name="side-bar-left" extent="0.75in" /> </fo:simple-page-master> <fo:simple-page-master page-width="8.5in" page-height="11in" master-name="sidebar-odd"> <fo:region-body margin-right="0.75in" /> <fo:region-end region-name="side-bar-right" extent="0.75in" /> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference="sidebars" initial-page-number="30"> <fo:static-content flow-name="side-bar-left"> <fo:table width="0.75in" table-layout="fixed" border-collapse="collapse"> <fo:table-column column-width="0.5625in" /> <fo:table-column column-width="0.1875in" /> <fo:table-body> <fo:table-row height="9.6875in"> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-right="0.5pt solid black"> <fo:block> <fo:external-graphic width="0.5in" src="left.svg" height="9in" /> </fo:block> </fo:table-cell> <fo:table-cell number-rows-spanned="5" border-bottom-width="1pt" border-bottom-color="green"> <fo:block /> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-right="0.5pt solid black"> <fo:block text-align="center" font-size="5pt" font-family="Optima">Â </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-right="0.5pt solid black"> <fo:block text-align="center" font-size="22pt" font-family="Optima">Â </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-right="0.5pt solid black"> <fo:block text-align="center" font-size="22pt" font-family="Optima">Â </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row height="0.50in" display-align="before"> <fo:table-cell border-top-width="1pt" border-top-color="#142850" background-color="#142850" border-right="0.5pt solid black"> <fo:block text-align="center" font-size="10pt" font-family="Optima"> <fo:page-number /> </fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:static-content> <fo:static-content flow-name="side-bar-right"> <fo:table width="0.75in" table-layout="fixed" border-collapse="collapse"> <fo:table-column column-width="0.1875in" /> <fo:table-column column-width="0.5625in" /> <fo:table-body> <fo:table-row height="9.6875in"> <fo:table-cell number-rows-spanned="5" border-bottom-width="1pt" border-bottom-color="green"> <fo:block /> </fo:table-cell> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-left="0.5pt solid black"> <fo:block> <fo:external-graphic width="0.5in" src="right.svg" height="9in" /> </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-left="0.5pt solid black"> <fo:block text-align="center" font-size="5pt" font-family="Optima">Â </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-left="0.5pt solid black"> <fo:block text-align="center" font-size="22pt" font-family="Optima">Â </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell border-top-width="1pt" border-top-color="red" border-bottom-width="1pt" border-bottom-color="green" background-color="#142850" border-left="0.5pt solid black"> <fo:block text-align="center" font-size="22pt" font-family="Optima">Â </fo:block> </fo:table-cell> </fo:table-row> <fo:table-row height="0.50in" display-align="before"> <fo:table-cell border-top-width="1pt" border-top-color="#142850" background-color="#142850" border-left="0.5pt solid black"> <fo:block text-align="center" font-size="10pt" font-family="Optima"> <fo:page-number /> </fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:static-content> <fo:flow flow-name="xsl-region-body"> <fo:block break-after="page" /> <fo:block break-after="page" /> <fo:block break-after="page" /> <fo:block break-after="page" /> </fo:flow> </fo:page-sequence> </fo:root>
--------------------------------------------------------------------- To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org