View Single Post
Old 03-12-2013, 11:41 PM   #4
dgatwood
Curmudgeon
dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.
 
dgatwood's Avatar
 
Posts: 629
Karma: 1623086
Join Date: Jan 2012
Device: iPad, iPhone, Nook Simple Touch
Epubcheck is reporting lots of warnings with that EPUB:

Code:
ERROR: ../qi.epub: Length of the first filename in archive must be 8, but was 9
Validating against EPUB version 2.0
WARNING: ../qi.epub/OEBPS/content.opf(5,24): title element is empty
ERROR: ../qi.epub/OEBPS/content.opf(16,46): character content of element "dc:identifier" invalid; must be a string with length at least 1 (actual length was 0)
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt1.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt10.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt11.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt2.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt3.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt4.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt5.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt6.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt7.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt8.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt9.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub: resource OEBPS/fonts/Trebuchet-BoldItalic.ttf cannot be decrypted
WARNING: ../qi.epub: resource OEBPS/fonts/TrebuchetMS.ttf cannot be decrypted
WARNING: ../qi.epub: resource OEBPS/fonts/TrebuchetMS-Bold.ttf cannot be decrypted
WARNING: ../qi.epub: resource OEBPS/fonts/TrebuchetMS-Italic.ttf cannot be decrypted
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt1.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt11.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt7.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub: item (OEBPS/.DS_Store) exists in the zip file, but is not declared in the OPF file
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt9.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub: item (iTunesMetadata.plist) exists in the zip file, but is not declared in the OPF file
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt2.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt3.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt5.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt10.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt8.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub: item (.DS_Store) exists in the zip file, but is not declared in the OPF file
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt4.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
WARNING: ../qi.epub/OEBPS/images/VT00025 Hands_fmt6.png: Filename contains spaces. Consider changing filename such that URI escaping is not necessary
But I don't see anything that should I'd expect to cause styling problems.

You might try throwing the text inside a span inside the anchor tag and resetting the color there, e.g.

Code:
a:link > span {
        color:#336666;
        text-decoration: none ;
}
Oh, I also notice that you're missing the com.apple.ibooks.display-options.xml file. Adding that file in the META-INF folder might make this problem magically disappear:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<display_options>
    <platform name="*">
        <option name="specified-fonts">true</option>
    </platform>
</display_options>

Last edited by dgatwood; 03-12-2013 at 11:46 PM.
dgatwood is offline   Reply With Quote