Hey Decoymer, all you need to do is add this to functions.php:
function remove_post_navigation() {
remove_action('thematic_navigation_below', 'thematic_nav_below', 2);
remove_action('thematic_navigation_above', 'thematic_nav_above', 2);
}
add_action('init', 'remove_post_navigation');
// Action to create the new below navigation
function childtheme_nav_below() { ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php previous_post_smart('« %link', '%title', true, true); ?></div>
<div class="nav-next"><?php next_post_smart('« %link', '%title', true, true); ?></div>
</div>
<?php }
add_action('thematic_navigation_below', 'childtheme_nav_below', 2);
// Action to create the new above navigation
function childtheme_nav_above() { ?>
<div id="nav-above" class="navigation">
<div class="nav-previous"><?php previous_post_smart('« %link', '%title', true, true); ?></div>
<div class="nav-next"><?php next_post_smart('« %link', '%title', true, true); ?></div>
</div>
<?php }
add_action('thematic_navigation_above', 'childtheme_nav_above', 2);
I hope that helps!
– Jonah