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 blah, blah, blah</h1>
or by CSS style:
PHP Code:
<h1 class="hidden-header">Title blah, blah, blah</h1>
with declared class:
Code:
.hidden-header {display: none;}
Of course, the style names will be different.