Quote:
Originally Posted by RbnJrg
And where is the class ".portrait" in your .css file?  For that reason your epub3 is not working. You need to add in your .css stylesheet the following:
Code:
.portrait {
height: 100vh;
}
This is the key to solve the ADE bug with SVG images. Congratulations; you found it, but you are not using it 
|
Aaah you found it! I was actually using @supports to apply the 100vh on that div, which ADE doesn’t support on ePub3, hence the problem. Great, my mind is at peace :-)
And nice work on finding the Blitz code affecting my code! I was thinking to do it today but you saved me from some extra work.
I have to say again that Jiminy Panoz did say that using <img> inside a <svg> tag can be deadly as some resellers automatically reformat the code. And even Apple discourage that uses... So I guess it’s a "use at your own risk" kind of code.