BTW, if I may ask another question....
I really don't understand why there are two css-files and what the difference between them are.
This is in the beginning of the html-files:
<link href="../Styles/style0001.css" rel="stylesheet" type="text/css" />
<link href="../Styles/style0002.css" media=" all" rel="stylesheet" type="text/css" />
The css-files contain the same classes, but are different??
p.C249 {
margin-top:35%;
margin-bottom:5%;
font-size:160%;
text-indent:0%;
text-align:left;
}
p.C249 {
margin-top:40%;
margin-bottom:5%;
font-size:140%;
text-indent:0%;
text-align:left;
}
How do I know what is actually used?
Edit.
Well, knowing which is used is simple of course. Changing them one at a time showed that it's the later one that enforces changes.
But why is the same class in two places? Guess I will have to re-read the chapters about css and stylesheets.
(It's made by amazon services, from a pdf created by InDesign.)