View Single Post
Old 11-18-2013, 11:54 AM   #24
jswinden
Nameless Being
 
Quote:
Originally Posted by Blossom View Post
Sounds the same as HDX reader with the exemption of extra fonts. There is no way turn on/ off publishers fonts on the Kindle Fire either. You have to hard code into the Style Sheet. I've got it down pat now on how to do that. You must add font family class to all styles to get the font to show up on everything.

In order for Time Left to Read work right the books has to have Kindle Navigation remember on the old Kindle how you could jump from chapter to chapter using the dpad? That's what Time Left To Read uses to figure out it's chapters. Calibre adds this if you get the right XPath. I'm sure there is a manual way to do it too.
It is strange how Amazon gives us the Publisher Font option on the Kindle eInks and the kindle for iOS app, but doesn't in the Fire or Android app. Yep, I use the following to make the embedded fonts work, but occasionally I find a horribly formatted book that stubbornly thwarts my efforts!

Code:
* { font-family: "MyFont"; }
  Reply With Quote