View Single Post
Old 01-01-2018, 02:05 PM   #3
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 854
Karma: 3341026
Join Date: Jan 2017
Location: Poland
Device: Various
Ad mbp:
You have two options.
1. Find all <mbp:something> (for example <mbp:pagebreak/>) tags and remove them
2. Add in the appropriate files...
Now you probably have such an entry:
Code:
<html xmlns="http://www.w3.org/1999/xhtml">
Change to:
Code:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:mbp="www.mobipocket.com">
It does not make much sense, but the error should not appear.


Ad kindlegen.
You must check especially the file Section0001.xhtml and specific link from the TOC file.
The destination has a style display:none declared.

It can be a direct declaration, e.g.
PHP Code:
<h1 style="display: none">Title blahblahblah</h1
or by CSS style:
PHP Code:
<h1 class="hidden-header">Title blahblahblah</h1
with declared class:
Code:
.hidden-header {display: none;}
Of course, the style names will be different.
BeckyEbook is offline   Reply With Quote