View Single Post
Old 05-15-2013, 10:30 AM   #9
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,105
Karma: 148951733
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by RbnJrg View Post
I think the error message is due to a bad definition of the class .alkaios. Try with this definition:

.alkaios {
font-family: "alkaios";
font-weight: normal;
font-style: normal;
}

You don't have to include (in that class) "src: url('../Fonts/alkaios-regular.ttf');". That is because "src" is not a valid property for a class (is a valid property for a @font definition).
What you are suggesting is incorrect.

Code:
@font-face {
font-family: alkaios;
font-style: normal;
font-weight: normal;
src: url(../Fonts/alkaios-regular.ttf);
}
That is correct and if you had read my message, you would notice that it is Sigil's fault for using the wrong CSS validation version.
JSWolf is online now   Reply With Quote