Quote:
Originally Posted by wallcraft
It is supposed to be possible, but specifying fonts inside a MOBI file is discouraged by MobiPocket because this is difficult to do well when targeting a wide range of devices. What is supposed to work is things like:
Code:
<style type="text/css">
p {
font-family: "Palatino Linotype", "Times New Roman", Verdana;
}
.chinese {
font-family: "Arial Unicode MS";
}
</style>
The above is from Font, style bug.
|
Any hint on how can I get something like this to work without resorting to manual html editing?
DrS