For first, sorry about my english.
I extensive read http://codex.wordpress.org/The_Loop article, and i dont find what i need, maybe i'm reading the wrong article, but, there it goes.
i use the follow code to show the newest post from a specify category
<?php $posts = get_posts( "category=6&numberposts=1" ); ?>
<?php if( $posts ) : ?>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
but now, i want to show only the third post(2 posts behind the newest), and i dont know what i have to include in this code. If someone could help-me i'm very very glad.