I took this code outside of the all the main tables and it still did the same screwy stuff of going over 900px….
<table width="700" border="0" cellspacing="0" cellpadding="0" >
<tr>
<td valign="top" width="469"><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="meta"><?php the_time('F jS, Y') ?> <?php edit_post_link('Edit','|',''); ?></div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php _e("Posted by"); ?> <?php the_author() ?> |
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?></td>
<td width="27"></td>
<td width="203" align="right" valign="top"><?php
get_sidebar();
?></td>
</tr>
</table>
I did not find the missing the UL tag you saw. I am now down to seven errors and 2 warnings after making some changes. It was up past 40 errors at one point.