I have fixed it. It was because my query in the header would not closes here is the correct code
header…
<?php $my_query = new WP_Query(‘category_name=featured&showposts=1’);
while ($my_query->have_posts()) : $my_query->the_post(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><div id=”featured-image”><?php the_meta(); ?>
<div id=”featured-title”> Featured: <?php the_title() ?></div>
</div>
<?php endwhile; ?>
index…
just remove this line
<?php query_posts(‘cat=all’); ?>
should work fine.
My site link may not work in a few weeks time as I will be removing that site.