View Single Post
Old 02-14-2014, 04:54 PM   #18
jswinden
Nameless Being
 
Quote:
Originally Posted by JimmyR View Post
Here's the css from the sample file. There are embedded fonts with a color of #00718E.
Code:
@font-face {
 font-family: "Minion";
 font-weight: normal;
 font-style: normal;
 src: url("../fonts/00001.otf");
 }
@font-face {
 font-family: "Minion";
 font-weight: normal;
 font-style: italic;
 src: url("../fonts/00002.otf");
 }
@font-face {
 font-family: "Minion";
 font-weight: bold;
 font-style: normal;
 src: url("../fonts/00003.otf");
 }
@font-face {
 font-family: "Minion";
 font-weight: bold;
 font-style: italic;
 src: url("../fonts/00004.otf");
 }
body{
 font-family:"Minion";
 text-align: justify;
 color: #00718E;
}
Geez, no wonder it is so effed up. Ekdog you can cut out this part of the CSS and it will display without Minion font and in black rather than #00718E. Idiot effing publisher!! At the very least I would delete:

Code:
body{
 color: #00718E;
}
BTW, text color #00718E is like a blue-green color. What a stupid publisher!

Last edited by jswinden; 02-14-2014 at 04:59 PM.
  Reply With Quote