Quote:
Which version of Pagina are you using? When I run ePUBcheck (pagina, 2.04) against an encrypted ePUB, it gives me a ton of error messages.
|
I am using version 2.0.6. You can see the validation in the attached image.
Quote:
I don't see where you assigned a font to this.
|
I assigned it in the stylesheet. It is in the first post of this thread. I copy it again:
Code:
@font-face {
font-family:Quicksand;
font-style:normal;
font-weight:normal;
src : url("../font/Quicksand-Regular.ttf");
}
@font-face {
font-family:VAGRundschriftD;
font-style:normal;
font-weight:normal;
src : url("../font/VAGRundschriftD.otf");
}
p.Numero-capitulo2 {
color:#39a2c4;
font-family:VAGRundschriftD, Quicksand, sans-serif;
font-size:3em;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:1.2;
margin-bottom:45px;
margin-left:0;
margin-right:0;
margin-top:0;
orphans:1;
page-break-after:auto;
page-break-before:always;
text-align:right;
text-decoration:none;
text-indent:0;
text-transform:none;
widows:1;
}
For me it is weird that Quicksand and VAG Rundschrift are combined in the same paragraph. I changed
Code:
font-family:VAGRundschriftD, Quicksand, sans-serif;
for
Code:
font-family:VAGRundschriftD, Futura, sans-serif;
, and it worked just fine. Of course, the second version does not have Quicksand embedded.