If you make a copy of a table style, and then rename the copy, none of the style declarations inside the style sheet get changed. For example:
1. Copy PlainTable.css.
2. Paste it and rename it to TestTable.css.
3. Open TestTable.css in the Internal Text Editor.
All TableStyles are labeled ".TableStyle-PlainTable" (the old name), and the code for a table using the new style is this (note the class="TableStyle-PlainTable" and the ('Resources/TableStyles/TestTable.css'):
Code: Select all
<table class="TableStyle-PlainTable" style="mc-table-style: url('Resources/TableStyles/TestTable.css'); margin-left: 0; margin-right: auto;" cellspacing="0"
xmlns="http://www.w3.org/1999/xhtml">Code: Select all
.TableStyle-TestTable .BodyA-Column1-Body1 ul,
.TableStyle-TestTable .BodyB-Column1-Body1 ul,
.TableStyle-TestTable .BodyC-Column1-Body1 ul,
.TableStyle-TestTable .BodyD-Column1-Body1 ul,
.TableStyle-TestTable .BodyE-Column1-Body1 ul,
.TableStyle-TestTable .BodyF-Column1-Body1 ul,
.TableStyle-TestTable .BodyG-Column1-Body1 ul,
.TableStyle-TestTable-Column1-Body1 ul,
.TableStyle-TestTable .BodyI-Column1-Body1 ul
{
list-style-type: square;
margin-top: 0px;
padding-top: 0px;
padding-left: 15px;
margin-left: 15px;
}
Reported to MadCap (case 33091, report 49700). I sincerely hope that they can fix this egregious error without requiring multiple users issuing bug reports.