
PIE is working but with one problem
Hello,
I am using PIE in wordpress theme with this fuction :
Code:
if ($wp_ver >= 2.8) include(TEMPLATEPATH . '/includes/widgets.php');
function my_render_css3_pie() {
echo '
<!--[if lte IE 8]>
<style type="text/css" media="screen">
#sidebar, #sidebar-3, #sidebar-4, #sidebar-5, #sidebar-6
{
zoom=1;
behavior: url('.trailingslashit(get_bloginfo('template_url')).'pie/PIE.php); }
</style>
<![endif]-->
';
}
add_action('wp_head', 'my_render_css3_pie', 8);
and PIE is working but i hava another problem now, please see the picture.
So i use PIE for sidebars and when i put widgets in sidebars they work nice
but when i dont use sidebars they should be not be visible but they are visible
so i dont know what do ?
please help
thank you !