ok , I get that now, thanks
- so what needs to go in extra-css for override to work. - where does !important go
also, new example -
I thought styles applied left to right, thus in this code ( which is a chapter 1st line), calibre5 overrides calibre2
Code:
<p class="calibre2"><strong class="calibre5">Wrapped in</strong> wool blankets
now calibre2 has indent 1em, & calibre5 is only used at start of chapter, so I figure that simply adding indent 0 to calibre5 will cause this 1st sentences of chapters to NOT indent - yet it does not work - how come?
here's the definitions, incl the addition to calibre 5:
.calibre2 {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-indent: 1em
}
.calibre5 {
font-weight: bolder;
text-indent: 0
}