View Single Post
Old 11-14-2012, 06:31 PM   #1
kelly33
Junior Member
kelly33 began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Nov 2012
Device: kindle fire
missing images icon

Fixed layout for children's book is now displaying the missing images icon after months of being published. Has Amazon changed the reference file format?

This is what I have inside each file before and after and it is still doing the same thing. I am currently waiting for a reply from Amazon. They can see the images but they can not when you choose preview download or purchase download. So I am wondering if it's the code or there server.







File folder structure before and after:

Before
main folder
.opf file
images folder
css file
html files
fonts folder

After
main folder
.opf file
html folder
css folder
image folder
fonts folder

Reference code before and after:

Before html
<link href="style.css" rel="stylesheet" type="text/css" />

After
<link href="../css/style.css" rel="stylesheet" type="text/css" />

Before css
#cover-img {
background-image: url("images/cover.jpg");}

After
#cover-img {
background-image: url("../image/cover.jpg");}


Before in opf
<item id="css" href="style.css" media-type="text/css"/>
<item id="page01" href="page01.html" media-type="application/xhtml+xml"/>
<item id="pg01-jpg" href="images/page1.jpg" media-type="image/jpeg"/>

After
<item id="css" href="css/style.css" media-type="text/css"/>
<item id="page01" href="html/page01.html" media-type="application/xhtml+xml"/>
<item id="pg01-img" href="image/page1.jpg" media-type="image/jpeg"/>

Last edited by kelly33; 12-06-2012 at 03:56 PM.
kelly33 is offline   Reply With Quote