im building this site:
and i have the following problem:
on some older android devices, some greek chars (usually the ones with a tone, for example: έ) display as a box with an x inside, on PC everything works well. Any idea?
im building this site:
and i have the following problem:
on some older android devices, some greek chars (usually the ones with a tone, for example: έ) display as a box with an x inside, on PC everything works well. Any idea?
This is a font issue. The box-with-an-x means the device does not have a font installed that supports the Unicode character being displayed.
Also, your site pages are using HTML5 (as evident by use of <!DOCTYPE html>
), but instead of using HTML5's <meta charset="utf-8">
tag, they are using HTML4's <meta http-equiv="content-type" content="text/html; charset=utf-8" />
tag instead. You should not even be using that tag in HTML5. Thankfully, your webserver is reporting Content-Type: text/html; charset=UTF-8
in the HTTP header of each page, otherwise HTML5 browsers might not interpret them as UTF-8 correctly. You need to fix your <meta>
tags. Don't mix HTML4 and HTML5 on the same page.