Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

If you are on the genesis system and want to have previous and next post navigation you can add the code below to your functions.php file. This is a great way for people to navigate though the posts on your website.  
/** Genesis Previous/Next Post Post Navigation */

add_action( 'genesis_before_comments', 'eo_prev_next_post_nav' );
 
function eo_prev_next_post_nav() {
  
	if ( is_single() ) {
 
		echo '
<div class="prev-next-navigation">';
		previous_post_link( '
<div class="previous">Previous article: %link</div>

', '%title' );
		next_post_link( '
<div class="next">Next article: %link</div>

', '%title' );
		echo '</div>

<!-- .prev-next-navigation -->';
 
	}
 
}

In your style sheet you can style the buttons how you like

Here is an example. You can add this to your style.css in your child theme.
.prev-next-navigation {
  margin: 20px 0;
	clear: both;
	overflow: hidden;
}

.previous {
	float: left;
	width: 50%;
}

.next {
	float: right;
	text-align: right;
	width: 50%;
}
Reference: http://www.eugenoprea.com/code-snippets/genesis-how-to-add-previousnext-post-navigation/