View Single Post
Old 10-13-2024, 06:06 PM   #2
Karellen
Wizard
Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.
 
Karellen's Avatar
 
Posts: 1,615
Karma: 9500498
Join Date: Sep 2021
Location: Australia
Device: Kobo Libra 2
Quote:
Originally Posted by ghastmxn View Post
I'm getting the error "Unexpected missing generic font family"
That just means you have not specified a fallback font

You have added this...
@font-face {
font-family: "OpenDyslexic";
src: url(fonts/OpenDyslexic-Regular.otf);
}

Then you need to specify where the font is used. It is not enough just to embed the font file.

If you want the whole book, I would add it under the <body> tag
body {
display: block;
font-family: "OpenDyslexic", serif;
font-size: 1em;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

Check my post here and download the epub... https://www.mobileread.com/forums/sh...76#post4458576
Karellen is offline   Reply With Quote