Hi guys,
thanks for thw quick response, heres the site
http://test.accmfg.com.au/category/articles/
The other template pages show fine, and I have tested the code from other template pages, by removing all code from category.php and then pasting in the working code from another template and I get the same problem?
Here is one of the other pages using a page template
http://test.accmfg.com.au/about/
I went through the validator, there were a few mistakes which I fixed up and it didn't have any effect, I've gone through and check all the div's and I'm pretty much 100% certain there are none missing.
I've also checked throught the posts, but they contain only text, and some bold and list tags.
Heres one of my working page templates.
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<div class="postarea">
<?php include(TEMPLATEPATH."/breadcrumb.php");?>
<h1><?php the_title(); ?></h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(__('Read more', 'studiopress'));?><div class="clear"></div><?php edit_post_link(__('(Edit)', 'studiopress'), '', ''); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.', 'studiopress'); ?></p><?php endif; ?>
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar.php");?>
</div>
<?php // The main column ends ?>
<?php get_footer(); ?>
Any ideas? Do I need to poast any more of my code?