Hi All, still hopeless with php. Just want to move the #access div to a different location on the homepage only. I can use css and body.home #access to style it into a new location, but I really really would like to get a clue about using action hooks... Thought this would work:
// #access from Header to abovefooter on homepage
function move_menu() {
if (is_front_page()){
remove_action('thematic_header','thematic_access',9);
add_action('thematic_abovefooter','thematic_access');
}
}
add_action('init', 'move_menu');