I am trying to add a web slice to a WP blog, on the page with the latest post. To do so, I have changed the index.php file (Default theme) inserting the two lines in bold
<?php while (have_posts()) : the_post(); ?>
<div class="hslice" id="FirstPost">...
</div>
<?php endwhile; ?>
Still nothing happens, that is IE 8 doesn't recognize the slice.
Any idea?