View Single Post
Old 01-08-2010, 01:45 AM   #8
AprilHare
Wizard
AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.AprilHare ought to be getting tired of karma fortunes by now.
 
AprilHare's Avatar
 
Posts: 2,981
Karma: 11862367
Join Date: Apr 2008
Device: Sony Reader PRS-T2
If you were unwilling to modify your Sony Reader though (or were using another EPUB capable device) it might be different.
I'm trying to modify a zaobao.com Calibre generated EPUB to work with Adobe Song Std - Light font (unsure if it could be distributed..)
Using following addition to CSS sheet:
@font-face {
font-weight: light;
font-style: normal;
font-family: "AdobeSongStd-Light" ;
src: url(fonts/AdobeSongStd-Light.otf) ;
}
@font-face {
font-family: "AdobeSongStd-Light";
font-weight: bold;
font-style: normal;
src: url(fonts/AdobeSongStd-Light.otf);
}
@font-face {
font-family: "AdobeSongStd-Light";
font-weight: normal;
font-style: italic;
src: url(fonts/AdobeSongStd-Light.otf);
}
@font-face {
font-family: "AdobeSongStd-Light";
font-weight: bold;
font-style: italic;
src: url(fonts/AdobeSongStd-Light.otf);
}
body {
font-family: "AdobeSongStd-Light", serif;
}

It's not working
AprilHare is offline   Reply With Quote