|
I'm working on a wordpress site and having difficulty with the site in Google Chrome. For some reason, the posts on the homepage go all the way to the right. We created a nested table in order to separate the posts and I think that may be what is causing the problem.
Take a look at the site here:http://bit.ly/8WvXrp
Here's the code that I think might be causing the problem:
<?php get_header(); ?>
<div id="content">
<div id="homepage">
<div id="homepageleft">
<div class="featured">
<?php $recent = new WP_Query("cat=&showposts=6"); while($recent->have_posts()) : $recent->the_post();?>
<table style="position: relative;" cellpadding="15px" width="660px" height="auto"><tr><td><div class="customdate"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div>
<div class="dateblock"><h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1></div>
<?php the_content_limit(500, "Read More"); ?><div style="clear:both;"></div></td></tr></table><div class="split">
</div>
<?php endwhile; ?>
</div>
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar.php");?>
</div>
<?php get_footer(); ?>
Please help!
Thanks.
|