Sure. Thanks so much for taking the time BTW. I’ll go try what you just suggested.
get_header(); ?>
<?php dynamic_content_gallery(); ?>
<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : ?>
<?php $posts=query_posts($query_string . 'posts_per_page=10&offset=2'); while (have_posts()) : the_post(); ?>
<div class="postcontainer">
<div class="icon">
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php custom_field_image() ?>
</div>
</div>
<div class="recentpost">
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<span class="entry-meta"><?php the_time(); ?> <!-- by <?php the_author() ?> --></span>
<small2><?php the_content_limit(200, "lisez plus") ?></small2>
<span class="entry-meta"><span class="edit-link"><?php edit_post_link('Edit', '', ' '); ?></span></span>
</div>
</div>
</div>
<div class="hr"><hr /></div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('? Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries ?') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]