View Single Post
Old 09-08-2010, 01:53 PM   #16
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
You left off the closing parenthesis in your @font-face definition, so the css doesn't parse. I noticed that in your post above, but thought you'd just failed to copy it over for the post. Also, you've added numbers to the end of the names of the font files that need to be removed.
So replace your font-face definitions with
Code:
@font-face {
  font-family: "Times New Roman";
  font-weight: normal;
  font-style: normal;
  src: url(../Fonts/Times New Roman Regular.ttf);
}

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

@font-face {
  font-family: "Times New Roman";
  font-weight: normal;
  font-style: italic;
  src: url(../Fonts/Times New Roman Italic.ttf);
 }
and it works fine.

Use the css attribute text-indent:1 em to indent the first line of a paragraph. Embedding a bunch of non-breaking spaces isn't a good idea.
Attached Files
File Type: epub AMOC9.epub (1.39 MB, 220 views)
charleski is offline   Reply With Quote