View Single Post
Old 04-29-2013, 11:19 AM   #5
AlPe
Digital Amanuensis
AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.
 
AlPe's Avatar
 
Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
Your CSS items are not closed:

Code:
<item id="covercss" href="css/cover.css" media-type="text/css">
<item id="css1" href="css/page1.css" media-type="text/css">
<item id="css2" href="css/page2.css" media-type="text/css">
<item id="css3" href="css/page3.css" media-type="text/css">
they should be:

Code:
<item id="covercss" href="css/cover.css" media-type="text/css"/>
<item id="css1" href="css/page1.css" media-type="text/css"/>
<item id="css2" href="css/page2.css" media-type="text/css"/>
<item id="css3" href="css/page3.css" media-type="text/css"/>
This might cause the failure in looking up for ids in manifest from idrefs in spine.
AlPe is offline   Reply With Quote