This is what the instructions were to make it working in IE8
in Initilize.php replace the line
header(‘X-UA-Compatible: IE=EmulateIE7’);
with
header(‘X-UA-Compatible: IE=EmulateIE8’);
I havent really test the above but it did work from a quick glance.
And this is what is in initialize.php at the moment.
<?php
/* Add actions */
add_action(‘wp_head’, array(‘KT_Hook’, ‘head’), 1);
add_action(‘wp_head’, array(‘KT_HTML’, ‘meta’));
add_action(‘wp_head’, array(‘KT_Hook’, ‘add_cufon’));
add_action(‘wp_footer’, array(‘KT_Hook’, ‘footer’), 100);
/* Remove actions */
remove_action(‘wp_head’, ‘wp_generator’);
/* Register Sidebars */
if ( !! is_admin()) :
include_once(KT_LIBRARY_PATH . ‘/admin/initialize.php’);
else :
header(‘X-UA-Compatible: IE=EmulateIE8’);
endif;
Is there something I can add to make it work in IE7 as well?