Hello,
In my Common Option --> Look and Feel --> Styling --> Extra CSS I'm using this block to add a font reference:
Code:
@font-face {
font-family: "Times New Roman";
font-weight: normal;
font-style: normal;
src: url(res: ///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman.ttf);}
@font-face {
font-family: "Times New Roman";
font-weight: bold;
font-style: normal;
src: url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman-Bold.ttf);}
@font-face {
font-family: "Times New Roman";
font-weight: normal;
font-style: italic;
src:url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman-Italic.ttf);}
@font-face {
font-family: "Times New Roman";
font-weight: bold;
font-style: italic;
src: url(res:///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman-Bold-Italic.ttf);}
When I convert a file from epub to epub, one of the font-faces loses the "src: url" data.
The code looks like this:
Code:
@font-face {
font-family: "Times New Roman";
font-weight: normal;
font-style: normal; }
I'm expecting to see this:
Code:
@font-face {
font-family: "Times New Roman";
font-weight: normal;
font-style: normal;
src: url(res: ///ebook/fonts/../../mnt/sdcard/fonts/Times-New-Roman.ttf);}
I'm not sure why my font-weight normal, font-style-normal @font-face is losing the url information on conversion?
I'd appreciate any and all help
Thanks,
Amalthia