Tried the code to remove the nav menu I found in the Themeshaper forum;
'// remove thematic_access()
function remove_access() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init', 'remove_access');'
in the childtheme function.php (also tried variant.php) but nothing happens.
If I add it to the Themtic function.php it kills off the Custom Header.
Any thoughs? Would like to eventually move nav menu to the footer.
TIA