Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Fire

Notices

Reply
 
Thread Tools Search this Thread
Old 10-20-2013, 12:47 AM   #1
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Publisher's Font Doesn't Work

Has anyone figure out how to get the publisher's font or embedded fonts to work on the Kindle Fire?!?

I've had hopped this would be fixed. If you know of a free book that does work let me know so I can look at the code and figure this out.

Publisher's font works fine on other Kindles but not the Kindle Fires.
Blossom is offline   Reply With Quote
Old 10-20-2013, 11:59 AM   #2
jswinden
Nameless Being
 
Quote:
Originally Posted by Blossom View Post
Has anyone figure out how to get the publisher's font or embedded fonts to work on the Kindle Fire?!?

I've had hopped this would be fixed. If you know of a free book that does work let me know so I can look at the code and figure this out.

Publisher's font works fine on other Kindles but not the Kindle Fires.
It doesn't work in the Kindle for iOS app either. I'm not sure about the Kindle for Android app, but it probably doesn't work there either. It is strange how Amazon cripples the reader functions. I'm not sure if they do it on purpose or just out of stupidity.

Since I read on my PW2 and my iPhone/iPad, I have to modify books to have bold text. Embedded fonts are nice on the PW2, but as noted they don't work on the Kindle for iOS app.
  Reply With Quote
Old 10-22-2013, 08:22 AM   #3
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Hot Diggity Dog! I got it work! *dances around the room in her PJs* It's crazy the things that come to you when about to drift off to sleep. There still is no publisher's on/off but the font is showing. It can't be changed but I don't want to change it so it works for me! Wheeee!!!

Okay deep breath. Fonts must be reference by file name not family name. Internal family name wont work. That's what Calibre does it adds the internal family name when it should be the filename instead!

Last edited by Blossom; 10-22-2013 at 08:27 AM.
Blossom is offline   Reply With Quote
Old 10-22-2013, 10:18 AM   #4
beckywc
Addict
beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.beckywc ought to be getting tired of karma fortunes by now.
 
beckywc's Avatar
 
Posts: 272
Karma: 1050426
Join Date: Feb 2010
Location: California
Device: iPad Mini w/Retina, Kindle 3, Kindle Fire HDX 8.9, & Asus Transformer
Can you explain what you did, thanks.
beckywc is offline   Reply With Quote
Old 10-22-2013, 10:52 AM   #5
jswinden
Nameless Being
 
Quote:
Originally Posted by Blossom View Post
Hot Diggity Dog! I got it work! *dances around the room in her PJs* It's crazy the things that come to you when about to drift off to sleep. There still is no publisher's on/off but the font is showing. It can't be changed but I don't want to change it so it works for me! Wheeee!!!

Okay deep breath. Fonts must be reference by file name not family name. Internal family name wont work. That's what Calibre does it adds the internal family name when it should be the filename instead!
That is how I reference them for my PW2--by file name. One file for each set of glyphs (Normal, Italic, Bold, and BoldItalic). But I always use Sigil. (I hate the calibre conversions for various reasons.) But with the PW2 we have the Publisher Font option. Without that option then you are forced to always read in whatever font the publisher embeds! Yuk!!!! I would want to turn that off when the publisher picks a terrible font, and they probably will. Maybe the Publisher Font option is hidden in some menu setting somewhere. You might check the Fire manual.
  Reply With Quote
Old 10-22-2013, 10:56 AM   #6
jswinden
Nameless Being
 
Here is how I do it in Sigil but I have no clue if this works on the Fire HDX. It works well on the PW2. BTW, you can also use negative left/right margins in the CSS to narrow the margins on the PW2. Can they be used on the Fire HDX too?

Code:
@font-face {
  font-family: "CharisSILSpecial";
  font-weight: normal;
  font-style: normal;
  src: url("../Fonts/CharisSILBold-Regular.ttf");
}

@font-face {
  font-family: "CharisSILSpecial";
  font-weight: normal;
  font-style: italic;
  src: url("../Fonts/CharisSILBold-Italic.ttf");
}

@font-face {
  font-family: "CharisSILSpecial";
  font-weight: bold;
  font-style: normal;
  src: url("../Fonts/CharisSILBold-Bold.ttf");
}

@font-face {
  font-family: "CharisSILSpecial";
  font-weight: bold;
  font-style: italic;
  src: url("../Fonts/CharisSILBold-BoldItalic.ttf");
}

body { font-family: CharisSILSpecial }
  Reply With Quote
Old 10-22-2013, 02:20 PM   #7
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Quote:
Originally Posted by jswinden View Post
That is how I reference them for my PW2--by file name. One file for each set of glyphs (Normal, Italic, Bold, and BoldItalic). But I always use Sigil. (I hate the calibre conversions for various reasons.) But with the PW2 we have the Publisher Font option. Without that option then you are forced to always read in whatever font the publisher embeds! Yuk!!!! I would want to turn that off when the publisher picks a terrible font, and they probably will. Maybe the Publisher Font option is hidden in some menu setting somewhere. You might check the Fire manual.
I remove the publisher's fonts in Calibre before it goes on my eReaders that's never a problem. The wonderful thing is I can read with my own font now!

What manual it didn't come with one.
Blossom is offline   Reply With Quote
Old 10-22-2013, 02:33 PM   #8
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Quote:
Originally Posted by jswinden View Post
Here is how I do it in Sigil but I have no clue if this works on the Fire HDX. It works well on the PW2. BTW, you can also use negative left/right margins in the CSS to narrow the margins on the PW2. Can they be used on the Fire HDX too?
Scratch all that! It can have spaces and it doesn't matter what the family name is the big problem lies in the body tag. Calibre uses it's own class and the HDX doesn't recognize it. It's so simple to fix though!

In Extra CSS box on its conversation window you just has to specified the font family. Like this
Code:
p {font-family: "Trebuchet", sans-serif;}
That would cause Calibre to put the font family in every class that contains text!

Body class will not work.

Last edited by Blossom; 10-22-2013 at 03:18 PM.
Blossom is offline   Reply With Quote
Old 10-23-2013, 03:41 AM   #9
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Quote:
Originally Posted by beckywc View Post
Can you explain what you did, thanks.
All you do is go to embed the font like you would on a eInk Kindle book in Calibre then on the Extra CSS box put"

Code:
p {font-family: "Trebuchet", sans-serif;}
Be sure to modified it to your font. In this case Trebuchet is the font name. The sans-serif/serif isn't really needed. You can omit it to look like:

Code:
p {font-family: "Trebuchet";}
The downside is you are stuck with the font. You can't turn it off at all but if you only read with one font this isn't a problem.

Last edited by Blossom; 10-23-2013 at 03:44 AM.
Blossom is offline   Reply With Quote
Old 10-26-2013, 05:06 AM   #10
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Good news!

Kindle Previewer has just been updated for the HDX!! It's quite accurate too. This is so much better than having to load and reload books on the HDX to see if they look right.
Blossom is offline   Reply With Quote
Old 10-26-2013, 11:34 AM   #11
jswinden
Nameless Being
 
Quote:
Originally Posted by Blossom View Post
Good news!

Kindle Previewer has just been updated for the HDX!! It's quite accurate too. This is so much better than having to load and reload books on the HDX to see if they look right.
I use Kindle Previewer for all my conversions and never seem to have the issues I hear about with calibre. I highly recommend it. I like that it gives you a compile log so you can see if anything didn't go as planned. Sometimes a file path is wrong within the HTML of the book, and that helps you trace it down quickly and resolve the issue. Debugging someone else's HTML and ePubs can be a PITA, but this makes it easier.
  Reply With Quote
Old 10-26-2013, 07:08 PM   #12
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
Quote:
Originally Posted by jswinden View Post
I use Kindle Previewer for all my conversions and never seem to have the issues I hear about with calibre. I highly recommend it. I like that it gives you a compile log so you can see if anything didn't go as planned. Sometimes a file path is wrong within the HTML of the book, and that helps you trace it down quickly and resolve the issue. Debugging someone else's HTML and ePubs can be a PITA, but this makes it easier.
I use Calibre due to having to edit each book but I can now see how it will look on the HDX. Before I was having to transfer to book to the HDX look at it then delete it and try again till it look right. Now I can use Kindle Previewer instead.
Blossom is offline   Reply With Quote
Old 10-26-2014, 05:55 PM   #13
Xanthe
Plan B Is Now In Force
Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.Xanthe ought to be getting tired of karma fortunes by now.
 
Xanthe's Avatar
 
Posts: 1,894
Karma: 8086979
Join Date: Jan 2010
Location: Surebleak
Device: Aluratek,Sony 350/T1,Pandigital,eBM 911,Nook HD/HD+,Fire HDX 7/8.9,PW2
Kindle Previewer:

http://www.amazon.com/gp/feature.html?docId=1000765261
Xanthe is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Output font doesn't work in conversion 1gnition Calibre 1 10-12-2013 12:00 AM
Troubleshooting Paperwhite doesn't display publisher font but Kindle 3 does EbokJunkie Amazon Kindle 6 04-16-2013 02:47 PM
Publisher Font replica145 Amazon Kindle 17 07-20-2012 01:27 PM
HELP, how do i make the TOC work in Ebook Publisher. Lago Fictionwise eBookwise 7 03-07-2010 08:08 PM
New Member, Publisher who Uses Ereaders at Work Kunati Introduce Yourself 8 08-12-2007 12:53 AM


All times are GMT -4. The time now is 02:04 AM.


MobileRead.com is a privately owned, operated and funded community.