View Single Post
Old 07-10-2022, 07:40 AM   #9
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,803
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by MerlinMama View Post
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");
}

Last edited by JSWolf; 07-10-2022 at 07:43 AM.
JSWolf is offline   Reply With Quote