Hi All,
I had a problem with the Infinity theme not showing images in IE8 - I found the fix and thought I would share it here (theme as on my site here http://www.iphoneprojector.net )
In the theme editor, edit the theme-functions.php page and add the following lines of code after the first two lines:
function fix_ie8() {if (strpos($_SERVER['HTTP_USER_AGENT'],"MSIE 8")) {header("X-UA-Compatible: IE=7");}}
add_action('send_headers','fix_ie8');
Hope this helps someone as it did me!