Quote:
Originally Posted by davidfor
I don't have anything running 3.13.1. But, with the firmware running on my Glo, it seems to be the same.
|
I checked your epub with firmware 3.13.1 and I get exactly the same results as you. The font family explicitly set at paragraph level is not overridden. This is new to me, I didn't notice when it changed.
However, the other book I tried used a construct like this:
stylesheet:
Code:
div.journal {font-family: "Journal";}
html:
Code:
<body>
<p>This paragraph should use whatever font the user selects.</p>
<div class="journal">
<p>This paragraph should use the special "Journal" font.</p>
</div>
</body>
In this case the override still takes effect on the <p> inside the <div>, so the patch is still needed.