Hello, I added the code snippet to functions.php, but be careful with php files if you don’t use a framework/ theme that gives you opportunity to edit them.
<?php
add_action(‘genesis_after_entry’, ‘sk_custom_post_nav’);
function sk_custom_post_nav() {
if ( !is_singular(‘post’) )
return;
echo ‘<div class=”prev-next-post-links”>’;
previous_post_link(‘<div class=”previous-post-link”>« Previous Post: %link</div>’, ‘%title‘, true);
next_post_link(‘<div class=”next-post-link”>Next Post: %link »</div>’, ‘%title‘, true);
echo ‘</div>’;
}