View Single Post
Old 05-27-2022, 12:10 AM   #2
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,738
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by John IV View Post
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>
Doitsu is offline   Reply With Quote