Quote:
Originally Posted by Azdaema
Here's the epub file, if that's what you're saying
|
I'm attaching the corrected file. Some pointers:
1) The apple settings file MUST be on the META-INF folder. It was not there. In the Editor, you can right-click the file and rename it like this:
META-INF/com.apple.ibooks.display-options. Then it will be put on the META-INF folder.
2) This file MUST NOT be manifested. So, you MUST erase this entry from the
content.opf:
Code:
<manifest>
...
<item href="com.apple.ibooks.display-options.xml" id="id" media-type="application/xml"/>
...
</manifest>
3) Like pointed by @JSWolf, no need to use multiple CSS files if they will be applied to the same file. Just merge them into one.
4) The font file was duplicated (causing the file to get bigger). One of then was referenced from
font.css and the other from
page_stylesheet.css (as pointed by @DNSB). Every font must be inserted only once, and then used along the css file using the
font-family rule.