Thank you for the prompt reply... so in the rare case someone has those specific fonts, it would render properly. Interesting. Don't think it's worth keeping them declared, though, since these fonts are relatively rare.
Now, sorry to be dense, I'm just not sure I understand what to delete yet.
Looking at the CSS, I see several declarations that look like:
@font-face {
font-family: "Century Schoolbook";
font-style: normal;
font-weight: normal;
src:local(CenturySchoolbook);
}
then, after that, there are what I recognize as my styles (from indesign), such as:
p.front-matter {
font-family: "Century Schoolbook";
line-height: 1.09em;
font-size: 0.92em;
margin-bottom: 0.00em;
margin-top: 0.00em;
text-indent: 0.00em;
margin-right: 0.00em;
margin-left: 0.00em;
text-align: left;
font-weight: normal;
font-style: normal;
color: rgb(0,0,0);
}
Should I be deleting everything? I'm guessing I still want my styles to have some impact, correct?
Would simply deleting the 'font' name in the style do the job? So, for this case:
p.front-matter {
DELETE JUST THIS LINE font-family: "Century Schoolbook";
line-height: 1.09em;
font-size: 0.92em;
margin-bottom: 0.00em;
margin-top: 0.00em;
text-indent: 0.00em;
margin-right: 0.00em;
margin-left: 0.00em;
text-align: left;
font-weight: normal;
font-style: normal;
color: rgb(0,0,0);
}
Should I be deleting/modifying the "font-face" section? If my spidey sense is on point, it looks like the font-face section is simply naming and specifying the font for future reference, so can be safely deleted since i'm deleting the references.
But then it would seem deleting the css wholesale would have unintended consequences (for example, my italics are based on styles). But exactly to delete? I'd think if I simply deleted the font line, then the rest of the style would impact the generic font (to some degree, based on reader)... but i'd love some confirmation that's the right way to go about it.
|