Quote:
Originally Posted by TheDJ89
That seems to make a bit more sense to me, but I really have no clue whatsoever about anything like this..if anyone could offer some advise on how to fix/make this better I really would be very, very grateful?
|
Let's go piece by piece:
Quote:
ERROR: tumblingtales.epub/OEBPS/content.opf(8): unfinished element
Line 3 - the language element is missing
|
The language is a compulsory piece of metadata that must be included in the .opf file. With Sigil, I believe there is a "metadata editor" where you can just add the language of the book. epubcheck complains about an "unfinished" element because it's expecting a language, and it doesn't find one, so it sees the metadata as unfinished.
Quote:
ERROR: tumblingtales.epub/OEBPS/Text/Section0024.xhtml(48): attribute "type" not allowed at this point; ignored
Line 48 - attribute element is not declared for element "div"
|
It seems you have something like <div type="whatever"> in your code. Specifically in Section0024.xhtml, line 48. Edit the file and delete the 'type="whatever"' part.
The same for tmp0.html, line 38.