I was able to get the posts_nav_link content to show up but without proper function, as I mentioned in this post. But now, I can't seem to get it to show up at all again.
If someone who knows their stuff, please take a peek at the following code and show me what I did wrong, it'd be greatly appreciated! I currently have my "Show at most:" posts set to 10.
------------------------------------------------------
<?php query_posts('cat=3&showposts=2&paged=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div> <!-- entry -->
<div class="postdate"><?php the_time('F jS, Y') ?> </div>
</div> <!-- post -->
<?php endwhile; ?>
<div class="navigation">
<?php posts_nav_link(' :: ','previous','next'); ?>
</div>