View Single Post
Old 01-04-2013, 04:47 PM   #12
Jim Lester
Evangelist
Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.Jim Lester is less competitive than you.
 
Jim Lester's Avatar
 
Posts: 416
Karma: 14682
Join Date: May 2008
Location: SF Bay Area
Device: Nook HD, Nook for Windows 8
Quote:
Originally Posted by sgirsberger View Post
Please, please someone tell me why the Nook Color does not use the Georgia font family I have specified when it's a typeface that is one of the standard options on the device? This is the single thing that is holding me up now, and I don't understand why I can't have it on the PD ON side as well as the PD OFF side.

Your advice is greatly appreciated.
With PD OFF - your font family rule is ignored, and the user select font is used - ALWAYS.

With PD ON - you don't have the font-face rules that define what Georgia is would be my guess (since those where in the userStyle css that is injected with PD OFF)

Adding the following may work:
@font-face { font-family: "Georgia"; font-style: normal; font-weight: normal; src: url("Georgia.ttf")}
@font-face { font-family: "Georgia"; font-style: italic, oblique; font-weight: normal; src: url("Georgia-Italic.ttf")}
@font-face { font-family: "Georgia"; font-style: normal; font-weight: bold; src: url("Georgia-Bold.ttf")}
@font-face { font-family: "Georgia"; font-style: italic, oblique; font-weight: bold; src: url("Georgia-BoldItalic.ttf")}

(If this does work it will be fragile - since it's based on current builds and font names that are subject to change).
Jim Lester is offline   Reply With Quote