Quote:
Originally Posted by grissley
jackie - the problem exists independently on the selected font, also with the standard (for a "russified" version) userStyle.css file.
As to the books - it exists in all my books.
|
@grissley - I loaded your epub on my PRS650. I have attached a screencap of one of the pages. It appears to be displaying OK in the correct font (Charis SIL) that I have set up in my customised
epub/userStyle.css file. Although I don't speak any Polish, to check that Polish chars are as expected
Is the following what you mean by the standard (for a "russified" version) userStyle.css file?
Code:
@font-face {
font-family: -ua-default;
font-weight: normal;
font-style: normal;
src: url(res:///Data/epub/FONT/droid/DroidSerif-Regular.ttf);
}
@font-face {
font-family: -ua-default;
font-weight: bold;
font-style: normal;
src: url(res:///Data/epub/FONT/droid/DroidSerif-Bold.ttf);
}
@font-face {
font-family: -ua-default;
font-weight: normal;
font-style: italic;
src: url(res:///Data/epub/FONT/droid/DroidSerif-Italic.ttf);
}
@font-face {
font-family: -ua-default;
font-weight: bold;
font-style: italic;
src: url(res:///Data/epub/FONT/droid/DroidSerif-BoldItalic.ttf);
}
@font-face {
font-family: "sans-serif1";
src:url(res:///opt/sony/ebook/FONT/tt0003m_.ttf);
}
h1 {
font-family: sans-serif1, sans-serif;
}
If so, the references to
Code:
font-family: -ua-default;
are not familiar to me. Mine all have this in its place
Code:
font-family: serif;
Also add
Code:
html {font-family: serif;}
after the last @font-face {...} statement and before the h1 {...} statement.