View Single Post
Old 02-26-2011, 02:45 PM   #10
jswinden
Nameless Being
 
I use SegoeUI and make it bold. I accomplish this using the method where you create a font folder on the Reader and reference it with CSS, as follows:

Code:
@font-face {
  font-family: "Segoe UI";
  font-weight: normal;
  font-style: normal;
  src: url(res:///Data/fonts/segoeuib.ttf);
}

@font-face {
  font-family: "Segoe UI";
  font-weight: bold;
  font-style: normal;
  src: url(res:///Data/fonts/segoeuib.ttf);
}

@font-face {
  font-family: "Segoe UI";
  font-weight: normal;
  font-style: italic;
  src: url(res:///Data/fonts/segoeuiz.ttf);
}

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

body { font-family: "Segoe UI", sans serif; }

If you are using the method where you create a font folder on the Reader and reference it with CSS, you can actually use multiple fonts to replace the Sony system font. For example, you could use the following CSS to replace the Sony font with four font families:
  • Arial Rounded MT Bold for normal text
  • Arial Black for normal bolded text
  • Arial for italic text
  • SegoeUI for italic bold text

Code:
@font-face {
  font-family: "W5JCK";
  font-weight: normal;
  font-style: normal;
  src: url(res:///Data/fonts/arlrdbd.ttf);
}

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

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

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

body { font-family: "W5JCK", sans serif; }
p { font-family: "W5JCK", sans serif; }

Last edited by jswinden; 02-26-2011 at 02:50 PM.
  Reply With Quote