Reputation: 85
So, I've posted several articles in my wordpress site, and some people said that they see the articles in a different language. I checked those articles several times, and I was completely sure they were in English, but they sent me some screenshots, and really, they saw that post in another language. What should I do? Here's an article for example: click here
Upvotes: 0
Views: 49
Reputation: 1173
You have set the content to use the font <span style="font-family: wingdings, 'zapf dingbats'; font-size: 14pt;">
.
Try changing this to something else like Verdana
. Or if you wanted to include custom fonts, you could always play around with:
@font-face {
font-family: 'MyWebFont';
src: url('myfont.woff2') format('woff2'),
url('myfont.woff') format('woff');
}
Upvotes: 2