Thanks for trying to help, I appreciate the effort, but that’s not enough information.
Here is a sample page.
You will see in the sidebar their are 2 sections. I need to be able to have posts from their respective categories to appear.
I tried this:
<ul>
<?php query_posts("category_id=6&orderby=desc&showposts=4"); ?>
<?php while (have_posts()) : the_post(); ?>
<li><?php the_time('F j, Y'); ?><br /><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
It made the actual page content wonky. It is displaying a post rather then the page content.