I greatly appreciate anyone's time to respond and help point me in the right direction.
I'm trying to set up two queries on my wordpress homepage, the first to display the most recent post title and excerpt, the 2nd to display the 3 most recent posts.... Unfortunately it's pulling the same data for both loops. I do have the reset_query function in place on the first one, but still not working. Below is my code, I may very well be using outdated practices, I've been trying to piece this together from bits and pieces on the web....thanks for taking a look and helping me figure this out.
<div id="left1">
<?php if ( is_home() ) { query_posts( 'posts_per_page=1' ); } ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<h6><?php include (TEMPLATEPATH . '/inc/meta.php' ); ?></h6>
<div class="entry">
<?php the_excerpt(); ?>
<h6 style="margin-bottom:20px"><a href="<?php the_permalink() ?>">Read more...</h6>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif;
wp_reset_query();
?>
</div>
</div>
<div id="left2">
<!-- RECENT POSTS QUERY -->
<?php $pc = new WP_Query('posts_per_page=3&offset=1&orderby=date&order=dec'); ?>
<?php while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?> ›</a></h2>
<h6><?php include (TEMPLATEPATH . '/inc/meta.php' ); ?></h6>
<div class="entry">
<?php the_excerpt(); ?>
<h6 style="margin-bottom:20px"><a href="<?php the_permalink() ?>">Read more...</h6>
</div>
<?php endwhile;?>
</div>