Quote:
Originally Posted by John IV
As a non-XML/HTML guru can someone suggest a way to resolve these types of errors? Is the problem in the toc.ncx or the html text itself? I don't know, laugh. Thanks!
|
This is a known KindleGen feature/bug. Search your stylesheet(s) for styles that contain
display: none;. For example:
Code:
.hidden {
display: none;
}
or
Code:
h1.hidden {
display: none;
}
Then search all HTML files for elements that use this style. For example:
Code:
<h1 id="id1" class="hidden">heading 1</h1>
and change that element to:
Code:
<h1 id="id1" title="heading 1"></h1>