Hi there,
I used the following and it was working like a year ago:
<p class="calibre"><span class="dropcap">U</span> - problems with text-align: justify
PHP Code:
.dropcap {
color: #900;
float: left;
font-size: 3em;
font-style: normal;
line-height: 0.8em;
margin-bottom: -0.2em;
margin-right: 3pt;
}
I changed it to what I found today - working at least for calibre reader, Readium, and BlueFireReader:
<p class="first-paragraph"><span class="char-style-override2">D</span>
PHP Code:
.char-style-override2 {
color: #900;
float: left;
font-size: 2.753em;
line-height: 0.9;
margin-bottom: -0.245em;
margin-right: 0.1em;
margin-top: 0.04em
}
.first-paragraph {
display: block;
font-size: 1em;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1.25;
text-align: justify;
text-decoration: none;
text-indent: 0;
margin: 0 0 2px
}
Try for your azw - its not my kind of stuff.
Good luck,
Max