View Single Post
Old 02-27-2020, 10:24 AM   #1
increase
Connoisseur
increase began at the beginning.
 
increase's Avatar
 
Posts: 95
Karma: 10
Join Date: Jan 2020
Device: kindle
Using Font family gets ignored in Sigil

I am using <span class="first-letter">F</span>

as a drop case in epub3 with css as

.first-letter {
display:block;
float:left;
font-size: 5em;
line-height:0.8em;
color:#bf253c;
font-weight:normal;
padding-right: 8px
}

When I use font-family:SerpentisBlack; or any other font that I have loaded into the Fonts folder, it gets ignored in the text.

If I use a standard font i.e. font-family: "Comic Sans MS"; it works

.first-letter {
font-family: "Comic Sans MS";
display:block;
float:left;
font-size: 5em;
line-height:0.8em;
color:#bf253c;
font-weight:normal;
padding-right: 8px
}
increase is offline   Reply With Quote