Sorry guys for the late reply, For some reason I didn’t get any email notification from wp.org.
To fix bug on IE, please remove this line from header.php
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" type="text/css" href="ie8-and-down.css" />
<![endif] -->
Then, on function.php add this line.
/***************************************************************/
/* add ie conditional html5 shim to header */
/***************************************************************/
add_action('wp_head', 'add_ie_html5_shim');
function add_ie_html5_shim () {
echo '<!--[if lt IE 9]>';
echo '<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>';
echo '<![endif]-->';
}
For IE 8 Bug with post thumbnail/featured image, please add this css to your style.css
img, video, select {
height: auto;
max-width: 100%;
max-width: none\9;
}
I’ve already check the Demo page on IE 9 and IE 8, no bug found so far.
I’ll add this fix on the next update and sorry for the inconveniences.