Forum Moderators: open
I had some pages in Word format. Importing that text in dream weaver, few characters changed in "garbage".
Analyzing some Czech sites I solved the problem: placing the right code
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1250"> and converting some characters manually.
For example this word:
společného
To get the "č" you can write in the editor "č".
P.S. Here I got the same problem: I can view the right character while editing, but after the post....garbage.
The letter was a letter "c" with a small "v" above.
Try this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<title>Czech Char Test</title>
</head>
<body>
This should be a lowercase c with a small "v" on top: č
</body>
</html>
Works for me ..