Hello, I just used this in the header.php of my wordpress site to make it compatible with IE8…and it works…any thoughts….?
<script>(function fix_ie8() {if (strpos($_SERVER,”MSIE 8″)) {header(”X-UA-Compatible: IE=7″);}}
add_action(’send_headers’,’fix_ie8‘))();</script>
this was put right before the </head> tag.