Quote:
Originally Posted by jackie_w
Might I also suggest that in the Editor you go to Edit - Preferences and on the 'Main Window' settings page check the last box, labeled 'Show full file paths in the Files Browser'. This will make it far more obvious exactly which directory (or sub-sub-directory!) each of your files resides in. This will make it much easier to set urls, anchor-links, etc correctly.
|
Thank you! This seems, indeed, to be very helpful - and I had strange surprises while comparing books this way: In some books, the path to the font (in my case) is
Code:
@font-face {
font-family: "FoglihtenNo07";
src: url(../fonts/FoglihtenNo07_0841.otf);
}
,
in others, let's say:
Code:
@font-face {
font-family: "FoglihtenNo07";
src: url(OEBPS/Fonts/FoglihtenNo07_0841.otf);
}
and so on, many differences occuring. I wasn't aware that one has to take care of so many things.