Quote:
Originally Posted by kartu
EPUB styles (not fonts!) are to be put into /database/system/PRSPlus/epub/, you can put font files wherever you want, you are referencing them from your CSS files, so you can update paths to it accordingly.
Regarding the whole procedure, better check first comment here ("Epub file fonts"):
http://code.google.com/p/prs-plus/wiki/InstallGuide
|
Kartu,
I have read that article, thanks.
This is what i have done.
I put the following files into the
root /database/system/PRSPlus/epub/ folder on my Sony PRS 600 Ebook,
original.css
style.css
userstyle.css
Then i put the following font file into the
root/fonts folder on my Sony PRS 600 Ebook,
Fontin-Bold.tff
But i still do not see the correct font.
This is what is in each of the css files,
@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);
}
body {
font-family: "Fontin", serif;
widows: 0;
orphans: 0;
}
Am i doing everything correctly ?