I know nothing about .css style files
but this could help.
In the main.css file, there's
.apost,
.apost:link,
.apost:visited,
.apost:active {
font-size: 13px;
line-height: 18px;
color: #666666;
If I understand correctly, the characters are 13 pixels heigh
with 5 pixels (18-13) between 2 characters, one above the other.
I think the problem is that the line-height is always 18px,
and if there's a picture on the line that's taller, it overflows.
At least, when I remove that line, there's no problem. |