One thing you could do about the problem with the fonts, is in your css styelsheet, under the section for "p" include font-family: Verdana
so it would read like this (the addition is in bold):
p {
font-size: 12px;
line-height: 22px;
margin-top: 20px;
margin-bottom: 10px;
font-family: Verdana;
}
I don't know if that will solve the problem, but give it a try.
|