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
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
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.