I had the same problem and found the fix, put this line of code in theme-functions.php page in the theme editor
function fix_ie8() {if (strpos($_SERVER['HTTP_USER_AGENT'],"MSIE 8")) {header("X-UA-Compatible: IE=7");}
add_action('send_headers','fix_ie8');