Thanks for the post. Case sensitivity is not what turned out to be the issue. Spacing is.
The following did not work: src: url (../Fonts/LiberationSerif-Italic.ttf);
The following did work: src: url(../Fonts/LiberationSerif-Italic.ttf);
The single space after the url entry was what was causing all of the problems. When that was fixed the "cannot reach" error disappeared. Apparently the Sigil parsing is very strict. Go figure!
|