View Single Post
Old 07-07-2011, 11:46 PM   #63
prsita
Enthusiast
prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.prsita is cognizant of many things which escape those who dream only by night.
 
Posts: 32
Karma: 103792
Join Date: Jun 2011
Device: PRS 650
J have used in the last week the font Nimbus suggested and j find it is really super, but j have a problem: in the file provided in a precedent message, there are only two fonts: Regular and Italic. There are not the Bold and the Bold Italic typefaces.

According to the message of the person that provided the fonts (that j sincerelly thanks), the last two typefaces are useless, because the PRS will use those ones that are standard. But, according to my esperience, this is not true.

Not providing the system with the fonts bold and bolditalic, the system will trasform in the text these two typefaces in a regular font.

The ony way to solve this problem is putting, in the folder of the font, the font Times and writing this .css:

@page
{
margin-bottom: 1pt;
margin-left: 1pt;
margin-right: 1pt;
margin-top: 3pt;
}
@font-face {
font-family: "NimbusMod";
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/NimbusMod.ttf);
}

@font-face {
font-family: "NimbusMod";
font-weight: normal;
font-style: italic;
src: url(res:///Data/fonts/NimbusMod_I.ttf);
}
@font-face {
font-family: "NimbusMod";
font-weight: bold;
font-style: normal;
src: url(res:///Data/fonts/timesb.ttf);
}

@font-face {
font-family: "NimbusMod";
font-weight: bold;
font-style: italic;
src: url(res:///Data/fonts/timesbi.ttf);
}

body
{
text-align: justify;
font-family: NimbusMod, "Times New Roman";
padding: 0;
font-size: medium;
}

But the font Times looks (even in Bold or BoldItalic) very different fron Nimbus.

Is possible to have the Nimbus font also in Bold and in BoldItalic? (j will double my thanks in this case).

Last edited by prsita; 07-07-2011 at 11:55 PM.
prsita is offline   Reply With Quote