Quote:
Can you please verify that the attached scrambled epub also exhibits the same problem
|
It does.
Quote:
FYI, scrambling removes the DOCTYPE because scrambling runs under calibre's rules/conventions and calibre never creates epubs with DOCTYPE.
|
That's useful info, thanks!
Quote:
The Kobo Adobe renderer does not seem to like the 3 style rules containing the 'vh' unit
|
This is it! I recently started to use the percentual 'vh' instead of the fixed 'em' to make the chapters top margin more flexible. I just tested reverting back to 'em' and it works.
The thing is, I have other files with the 'vh' unit that work.
For example:
Quote:
.fr{
display:flex;
flex-direction:column;
justify-content:space-between;
height:90vh;}
|
and
Quote:
h1{ text-align: center; font-weight: normal; font-size: 1.2em; margin: 3.0em 0 30vh; font-family: "Copperplate", serif; letter-spacing: 2px; }
|
Also when declared outside the css file:
Quote:
<p style="text-align: right; text-indent: 0px; margin-top:20vh"><i>“Somos débeis, mas ao nosso sinal</i>,</p>
|
In all this cases the file works properly.
Any thoughts on that?
Anyway, thanks for the great help!