is your website becoming blank after changing web template?
ok here is the solution for ppl who are making a foreign language site other than english using charset=utf-8.
Find your templates in the templates/ folder. and find the index.php(if you have multiple templates you have to modify each index.php individually)
Original lines
<head>
<?php mosShowHead(); ?>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<meta http-equiv="Content-Style-Type" content="text/css" />
Switch the third line with the second line. and make it looks like this
<head>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<?php mosShowHead(); ?>
<meta http-equiv="Content-Style-Type" content="text/css" />
Then you will be seeing your site up and running again.
for ie 7 somehow it must know the coding before anything that is not english shows up, especially if you have changed your site title to other languages.
hope this helps some of you guys:)