Just one more, teentsy-weentsy little thing ...
Quote:
Right, I think I know what's happened, those @font-face definition are trying to access the EMBEDED fonts which don't exist, what you need to do is either remove the whole of the following lines (so it will use the fonts already on system)
Quote:
@font-face {
font-family: "Baskerville";
font-style: normal;
font-weight: normal;
src:local(Baskerville);
}
@font-face {
font-family: "Rockwell";
font-style: normal;
font-weight: normal;
src:local(Rockwell);
}
OR to embed the fonts, right click on the Fonts folder in book browser window, and 'Add Existing Items...' , then
|
OK, I've managed to embed the Baskerville font, but not the other one, so I'm just going to use the default one.
However, the subsequent pieces of code also specify "Rockwell", like so:
Quote:
}
p.a-fyrirs-gn-kaflar {
font-family: "Rockwell";
line-height: 1.17em;
font-size: 2.00em;
margin-bottom: 0.00em;
margin-top: 0.00em;
text-indent: 0.00em;
margin-right: 0.00em;
margin-left: 0.00em;
text-align: center;
font-weight: normal;
font-style: normal;
color: rgb(0,0,0);
}
p.x0fyrirsagnir {
font-family: "Rockwell";
line-height: 1.00em;
font-size: 1.50em;
margin-bottom: 0.00em;
margin-top: 0.00em;
text-indent: 0.00em;
margin-right: 0.00em;
margin-left: 0.00em;
text-align: center;
font-weight: normal;
font-style: normal;
color: rgb(0,0,0);
}
|
Do I need to do anything to this code, remove the "Rockwell" or something?