Oh, by the way, I am not asking for a plugin, but the code.
This is the code for my headlines at the moment:
<div class="headlines">
<div class="leftlines"><h3>Africa Travel Blog Posts</h3>
<ul><?php query_posts('cat=-6,-46&showposts=3')?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><li><h2><?php the_title(); ?></h2></li></a>
<?php endwhile; ?></ul>
<?php else : ?>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?></div>
<div class="rightlines"><h3>Quick Africa News</h3>
<ul> <?php query_posts("cat=6&showposts=3")?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><li><h2><?php the_title(); ?></h2></li></a>
<?php endwhile; ?></ul>
<?php else : ?>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?></div>
<div class="centerlines"><h3>Fellow Traveler's Blog Posts</h3>
<ul> <?php query_posts('cat=46&showposts=3')?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><li><h2><?php the_title(); ?></h2></li></a>
<?php endwhile; ?></ul>
<?php else : ?>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
</div>