Ahh..I see what you’ve got.
Okay, what you need to do is, in your index.php file, you need to place everything within it’s own div. For example, your site has <div id="content">
follwed by your post date and the post. Enclose all of that stuff (via the index.php file) in a div class. Like so:
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post"
id="post-<?php the_ID(); ?>">
<h2><a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
</div> <!-- /.post -->
</div> <!-- /#content -->
Then, in your CSS, just make the div.post a certain width – or enclose it in a box, sort of like:
div.post {
width:250px;
padding:10px;
border:solid 1px #000;
margin-right:20px;
float:left;
}
That’ll put all the contents of each post within a box that’s 250px wide with a 1px border around it, and give 20px of space between them.
Of course, you’ll need to edit this stuff for your own layout, but it gives you the idea.