Hello Jafo...
Thanks for your ideas on this...
I'm not seeing anything in the error log when the theme "breaks."
Everything on the page displays until the following bit of code.
Code:
<?php
$mbcount = 0;
while (have_posts()) {
the_post();
if( $mbcount == 0 ) { ?>
<div class="clearfloat">
<h4><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a> <span class="commentcount">(
<?php comments_popup_link('0', '1', '%'); ?>
)</span></h4>
<?php $mbvalues = get_post_custom_values("Image");
if (isset($mbvalues[0])) {
?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=/<?php
$mbvalues = get_post_custom_values("Image"); echo $mbvalues[0]; ?>&w=70&h=70&zc=1" alt="<?php the_title(); ?>" /></a>
<?php } ?>
<?php the_excerpt(); ?>
</div>
<ul class="headlines">
<?php
} else {
?>
<li><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a> </li>
<?php
}
?>
<?php
$mbcount ++;
}
if( $mbcount > 0 ) { echo "</ul>"; }
?>
</div>
<?php } ?>
Does that help the mystery?
Thanks again,
kev