Quote:
Originally Posted by JLius
Right, then I'll have to embed a font. Thanks for the info.
|
Not necessarily

You can use something like:
1. In your css file:
Code:
.smallcaps {
text-transform: uppercase;
font-size: 80%; /* here you can use any other size you like, maybe 70% */
}
2. In your .xhtml file:
Code:
<p>T<span class="smallcaps">his is a text in small caps</span></p>
Of that way, you are faking small cpas in a form that also works in ADE.
Regards
Rubén