Style Sheets
In my CSS I have two entries for a chapter title style:
<style>
.stylechapter {
font-family: "Dancing Script";
font-size: 18px;
color: #983200;
text-align: left;
font-weight: bold;
font-style: normal;
letter-spacing: 4px;
}
.stylechapter {
font-family: Dancing Script;
font-size: 18px;
color: #983200;
text-align: left;
font-weight: bold;
font-style: normal;
letter-spacing: 4px;
}
The only difference is that the font is in parenthesis in one of them. If I delete one or the other styles then the chapter title style is no longer available.
Any idea why I need both styles?
Thanks
Alan
