View Single Post
Old 04-14-2012, 04:07 PM   #6
Keroberos
Zealot
Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.Keroberos ought to be getting tired of karma fortunes by now.
 
Keroberos's Avatar
 
Posts: 128
Karma: 238654
Join Date: Aug 2009
Device: Kobo Mini (4GB), Nook Classic wi-fi, iPod Touch (Bluefire Reader)
Sigil is not auto-correcting the path to the SVG image after it normalizes the ePub structure. Change this,
Code:
<object data="images/author-pic.svg" height="150" type="image/svg+xml" width="150">
To this,
Code:
<object data="../Images/author-pic.svg" height="150" type="image/svg+xml" width="150">
in the title page.

Quote:
Originally Posted by mmat1 View Post
This:
Code:
<div class="center">
    <object data="images/author-pic.svg" height="150" type="image/svg+xml" width="150">
      </object>
  </div>
is not valid in epub-standard.
How so? An SVG image can be in an object element.

Quote:
Originally Posted by mmat1 View Post
I wonder how you can see it in sigil, I don't see even a placeholder for a picture.
Shows up fine in Sigil and ADE, once you fix the path.

Last edited by Keroberos; 04-14-2012 at 04:40 PM. Reason: Added more info
Keroberos is offline   Reply With Quote