Quote:
Originally Posted by MerlinMama
Because these are not the overall font. I use one for letters, one for transitions (eg. Later that Day), and one for Newspaper articles. If I don't embed, even if they are on my Kobo, they do not show. If I don't have any of these instances, I don't embed.
So if the book is in, for example, New Times Roman, and that's all there is, I don't embed. If there's a letter, I have just that show as Segoe Print. A newspaper article, Kirsty. Even if I have all the Fonts on my Kobo, everything shows up only in Times New Roman.
I've never been able to get it to work without embedding, on any of my Kobo devices.
|
There used to be a way to access side loaded fonts in CSS as though they were embedded without actually having to embed.
I'm not 100% sure if this will work on the 4.33 firmware.
Code:
@font-face {
font-family: monospace;
font-style: normal;
font-weight: normal;
src: url("res:///fonts/normal/Dark Courier");
}
@font-face {
font-family: monospace;
font-style: normal;
font-weight: bold;
src: url("res:///fonts/bold/Dark Courier");
}
@font-face {
font-family: monospace;
font-style: italic;
font-weight: normal;
src: url("res:///fonts/italic/Dark Courier");
}
@font-face {
font-family: monospace;
font-style: italic;
font-weight: bold;
src: url("res:///fonts/bolditalic/Dark Courier");
}