My bad solution: assign different css stylesheet at a topic level. But these get overridden when I assign a stylesheet to a master page.
I can't seem to change this style from the MadCap proxy because the tables created on export.
Code: Select all
table.GenListOfTableListOf td { border: none; }Code: Select all
table.GenListOfTableListOf td
{
border: none 0px;
}Code: Select all
/*
Flare adds td's before and after the real content of the ListOf
table, they have borders that can be turned off, but making
them not display at all allows a Table of Figures to be aligned
the same as the Table of Contents. If it ever stops putting them
in - they seem completely pointless - the real content of the
Table of Figures will disappear and this rule will have to
be removed to restore them. NOTE: it doesn't seem to support
last-child or nth-last-child.
*/
table.GenListOfTableTOF td:first-child,
table.GenListOfTableTOF td:nth-child(4)
{
display: none;
}