Quote:
Originally Posted by quiris
Hitch, you cannot " directly" styling using font-family property. Use CSS inheritance feature 
body is ancestor of h1 in your example so you can style it according to my recipe in such way:
Code:
body {font-family: Arial; font-size: 1em}
h1 {font-size: 3em}
But according to my algorithm you cannot write:
Code:
body {font-family: Arial; font-size: 1em}
h1 {font-family: Arial; font-size: 3em}
|
Yes. That's what I thought you meant. As we're not speaking the same native tongue, I like to clarify.
My experience with the MOBI from hell was not affected by ensuring this method of setting the heading. I'm going to pull it out this weekend, if I can, and stare at it some more, to see if I can find anything else to add to the discussion.
I can't confirm whether embedding the ePUB or not makes a difference.
I do know some folks at Amazon; but they have frankly not been helpful on this topic. As with some others, they've asked us for help--not the other way around. However, Kevin, I'll see if I can get an answer to that specific question. Assume it won't be quick. (On their parts--not that I shan't write quickly).
Hitch