file is at /wp-content/themes/garden/inc/featured php
check this lines and delete it (attention:MUST be this lines, no other)
<div class="glidecontent">
<?php
$my_query = new WP_Query('showposts=1&offset=6');
while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
?>
<div class="hentry">
<?php get_the_image(array('width' => '120', 'height' => '120', 'class' => 'glideimg' ,'image_scan' => true)); ?>
<div class="contentdate">< h5>{ <?php the_time('M'); ?> }</h5><h6><?php the_time('j'); ?>< /h6></div>
< h2>< a href =" <?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?>< /a>< /h2>
< p><?php the_content_rss('', FALSE, '', 37); ?></ p>
<div class="read">
Category: <?php the_category(', ') ?> | <?php comments_popup_link('0', '1', '%'); ?> |
< a title="Read more here" href="<?php the_permalink() ?>">Read on< /a>
</div>
</div>
<?php endwhile; ?>
</div>