Quote:
Originally Posted by Toxaris
Why don't you specify the italic and bold version with the same font-family name and adjust the font-style and font-weight to correspond with the actual font? That way the reader should pick the right font anyway.
|
Because I'm dumb -- or was, but you enlightened me. This is one of those things that I know that I "knew" to do, but it's been so long I forgot.
Quote:
Also, be aware that some readers will ignore font-family set in the body.
|
I'm not quite sure what you mean. Are you cautioning me that some readers will ignore embedded fonts? Or do you mean there's something wrong with this part of my CSS...
Code:
html>body {
font-family: minya, 'Times New Roman', Times, serif;
font-size: 124%;
}
body {
font-family: minya, 'Times New Roman', Times, serif;
font-size: 100%;
line-height: 138%;
}
...(or something somewhere else)?
Thanks for your help!