You should be able to just edit the template you’re using and add the function posts_nav_link() wherever you want the navigation to appear.
More info – http://codex.wordpress.org/Next_and_Previous_Links
If anyone is wanting to use the Ajax Links for navigation without breaking their menu, here’s a workaround:
Put the following into the custom css:
.sub-menu-opacity-fix {
opacity: 1 !important;
}
Place the following into functions.php at the start of the function ‘nav_link.click(function() {‘
$('.sub-menu').addClass('sub-menu-opacity-fix');
You lose the fade effect of the sub-menu after clicking more posts, but it’s much better than losing the sub-menu altogether!
Cheers,
David
FYI, to fix this issue I placed the following into the custom css, under theme options – layout.
#header input#s {
z-index: auto;
}
.flex-direction-nav, .flex-pauseplay {
z-index: auto;
}
Cheers,
David