Ahhh - that works, both in the editor and in ADE and KP
I think what I have now (below) will work nicely. With BR's style recommendations and getting the font to work, it's now simple enough for me to drop in easily and set off a snail-mail. I could even go back to my first choice for typeface.
I will have to also come up with one or two more CSS files to easily handle typewritten and computer-type output, but I'll just model them on this one
Thanks again
Code:
@font-face {
font-family: "Lucida Handwriting";
src: url(../fonts/Lucida_Handwriting_Italic.ttf);
}
blockquote.handwritten {
font-family: "Lucida Handwriting";
padding: 0 5% 0 5%;
margin: 5%;
background-color: rgb(240, 240, 240);
border-style: solid;
letter-spacing: 0.1em;
}
blockquote.handwritten p {
text-indent: 0;
text-align: left;
font-size: 1.1em;
margin-top: 0.75em;
}
blockquote.handwritten p.compliment {
text-align: right;
}