I’ll look into the faux columns. However, I don’t quite know which part of the index.php to enclosed in the <div class=”meta”>. Here’s the index.php file, can you just post it back with the div in the right spot? I tried a few places and it either did nothing or pushed the post text over under the left column.
————————————–
<?php
/* Don’t remove these lines. */
$blog = 1;
get_header();
?>
<body>
<div id=”headerblock”>
<h1 id=”header”>“><img src=”http://ethanmeanor.com/journal/wp-content/themes/journal/images/banner.jpg”></h1>
<?php bloginfo(‘description’); ?>
</div> <!– headerblock –>
<?php if (have_posts()) { while (have_posts()) { the_post(); ?>
<?php the_date(”,'<h2>’,'</h2>’);?>
<div class=”centreblock”>
<h3 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h3>
<div class=”meta”><?php print($post_date)?><?php the_time(‘F jS, Y’) ?> at <?php the_time() ?><?php edit_post_link(); ?>
</div> <!– meta –>
<div class=”storyContent”>
<?php the_content(); ?>
Filed under <?php the_category(‘, ‘) ?> – <?php comments_popup_link(‘0 Comments’, ‘1 Comment’, ‘% Comments’); ?>
</div> <!– story content –>
<div class=”storyLinks”>
<div class=”feedback”>
<?php wp_link_pages(); ?>
</div>
</div> <!– storyLinks –>
<!–
<?php trackback_rdf(); ?>
–>
<?php comments_template(); ?>
</div> <!– centreblock –>
<?php } // end foreach
if ((! is_single()) && (! is_page())) { ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div>
<?php
} //end if !single or page
else if (is_single()) {
?>
<div class=”navigation”>
<div class=”alignleft”><?php previous_post(‘« %’,”,’yes’) ?></div>
<div class=”alignright”><?php next_post(‘ % »’,”,’yes’) ?></div>
</div>
<?php
} // end if is single
} else { // end if any posts
?>
<div class=”centreblock”>
Sorry, no posts matched your criteria.
</div> <!– centreblock –>
<?php } // end else no posts
?>
<p class=”centerP”>
Powered by WordPress
<p class=”centerP”>All articles, chapters and other content Copyright 2005 by Ethan Meanor unless otherwise noted. All rights reserved.
<?php
include_once(‘leftcolumn.php’);
include_once(‘rightcolumn.php’);
?>
<?php do_action(‘wp_footer’); ?>
</body>
</html>