I am going to jump in here with a new bug report for Sigil. I have an eBook that uses smallcaps and the code in the XML is...
Code:
<h1 class="chapter3" id="adc"><span class="small">also by p. d. james</span></h1>
In the CSS, the code is...
Code:
span.small {
font-family: smallcaps
}
Now the code for the fonts is correct...
Code:
@font-face {
font-family: smallcaps;
font-weight: normal;
font-style: normal;
src: url(../Fonts/CharisSILSmCp-R.ttf)
}
@font-face {
font-family: smallcaps;
font-weight: bold;
font-style: normal;
src: url(../Fonts/CharisSILSmCp-B.ttf)
}
This displays correctly in ADE. But in Sigil, I get lowercase instead of smallcaps.
Sigil isn't recognizing span.small in the CSS.