rince I figured that part out! I changed some syntax and deleted a bit of unnecessary stuff. Here is the index.php for posterity:
<?php
get_header ();
?>
<div id="box">
<div id="left">
<?php $my_query = new WP_Query ( 'category_name=tony&showposts=3' );
while ( $my_query->have_posts () ) :
$my_query->the_post () ?>
<div class="post">
<h3>
<a href="<?php the_permalink ();?>"><?php the_title ();?></a>
</h3>
<div class="entry">
<?php the_content ();?>
</div><!-- end entry div -->
</div><!-- end post div -->
<?php
endwhile;/*end tony while have posts*/
?>
</div><!-- End Left Div -->
<div id="right">
<?php
$my_query = new WP_Query ( 'category_name=hippie&showposts=3' );
while ( $my_query->have_posts () ) :
$my_query->the_post () ?>
<div class="post">
<h3>
<a href="<?php the_permalink ();?>"><?php the_title ();?></a>
</h3>
<div class="entry">
<?php the_content ();?>
</div><!-- end entry div -->
</div><!-- end post div -->
<?php
endwhile;/*end hippie while have posts*/
?>
</div><!-- End Right Div -->
</div><!-- end box div -->
<?php
get_sidebar ();
get_footer ();
?>
The last step is that I just can't get the divs to display side-by-side, even though I make their widths 40% of the box div that they are in. It doesn't even work if I give them a fixed width that is less than half of the box width. Here is the css:
/* /*
Theme Name: Duel
Theme URI: hippievstony.com
Description: Side-By-Side Comparison Blog Mayhem
Version: 1.0
Author: tony
Author URI: http://www.hippievstony.com
*/
*/
#left{
float: left;
width: 40%;
}
#right{
float: right;
width: 40%;
text-align: right;
}
body{
margin: 0;
font-family: Arial, Helvetica, Georgia, Sans-serif;
font-size: 12px;
text-align: left;
vertical-align: top;
background: #ffffff;
color: #000000;
}
a:link, a:visited{
text-decoration: underline;
color: #336699;
}
a:hover{
text-decoration: none;
}
#wrapper{
margin: 0 auto 0 auto;
width: 1200px;
text-align: left;
}
#header{
float: left;
width: 1200px;
height: 800px;
background: url(http://www.hippievstony.com/wp-content/uploads/2009/10/hippievstonyadjpgsmall.jpg) no-repeat;
padding-left:100px;
}
#box{
float: left;
width: 1000px;
}
.sidebar{
float: right;
width: 200px;
background: #eeeeee;
margin: 0 0 0 0px;
display: inline;
}
#footer{
clear: both;
margin: auto;
width: 1200px;
text-align: center;
}
.comments-template{
margin: 10px 0 0;
border-top: 1px solid #ccc;
padding: 10px 0 0;
}
.comments-template ol{
margin: 0;
padding: 0 0 15px;
list-style: none;
}
.comments-template ol li{
margin: 10px 0 0;
line-height: 18px;
padding: 0 0 10px;
border-bottom: 1px solid #ccc;
}
.comments-template h2, .comments-template h3{
font-family: Georgia, Sans-serif;
font-size: 16px;
}
.commentmetadata{
font-size: 12px;
}
.comments-template p.nocomments{
padding: 0;
}
.comments-template textarea{
font-family: Arial, Helvetica, Georgia, Sans-serif;
font-size: 12px;
}
check the site out if you want to see what I mean