I am not sure if this is a bug or some of my setting is not right.
I am using a special font for headers and I have online both the regular and the italics uploaded.
When I see the page online, it works fine, when I make the pdf it is rendered italicised (italics applied to the italics!)
My CSS is
Without the "em, i {font-style: italic;}" no italic was rendered in the PDF pages (browsers would do that).
I am using a special font for headers and I have online both the regular and the italics uploaded.
When I see the page online, it works fine, when I make the pdf it is rendered italicised (italics applied to the italics!)
My CSS is
@font-face {
font-family: 'Museo 500';
src: url("http://www.engramma.it/eOS/core/fonts/Museo500-Regular.eot");
src:
url("http://www.engramma.it/eOS/core/fonts/Museo500-Regular.otf")
format('opentype');
}
@font-face {
font-family: 'Museo 500';
src: url("http://www.engramma.it/eOS/core/fonts/museo-500-italic.eot");
src:
url("http://www.engramma.it/eOS/core/fonts/Museo-500Italic.otf")
format('opentype');
font-style: italic;
}
h2 {
font: normal 36pt/43pt "Museo 500";
}
em, i {font-style: italic;}
Without the "em, i {font-style: italic;}" no italic was rendered in the PDF pages (browsers would do that).