I finally figured out how make the font substitution work with PRSPlus so that I don't have to go through Calibre to embed the font.
Per the
PRSPlus site.
Code:
(path to custom css is: internal memory /database/system/PRSPlus/epub/style.css)
I already had my fontin css file saved as a txt file. I just renamed a copy as "style.css" and droped it in the PRSPlus/epub/ folder. I already had a fonts folder per Zelada's instructions. I then downloaded a book from Feedbooks and moved it directly onto the 505 without every opening Calibre. It worked!
Now does anyone know how I would add the border parameter to my css file?
Code:
@font-face {
font-family: "Fontin";
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/Fontin-Regular.ttf);
}
@font-face {
font-family: "Fontin";
font-weight: bold;
font-style: normal;
src: url(res:///Data/fonts/Fontin-Bold.ttf);
}
@font-face {
font-family: "Fontin";
font-weight: normal;
font-style: italic;
src: url(res:///Data/fonts/Fontin-Italic.ttf);
}
@font-face {
font-family: "Fontin Sans";
font-weight: bold;
font-style: italic;
src: url(res:///Data/fonts/Fontin_Sans_BI.otf);
}
body {
font-family: "Fontin", serif;
}