Hi, not sure if the problem has been resolved yet. But if you’re looking to change the “Home” link on the navigation to say something different, it’s in the functions.php (I’m using the twentyten theme so it might be different for you if ur using a different theme)
look for this:
function twentyten_page_menu_args( $args ) {
$args[‘show_home’] = true;
return $args;
}
and change where it says true to what to whatever you want it to say e.g.:
function twentyten_page_menu_args( $args ) {
$args[‘show_home’] = ‘Start’;
return $args;
}
Don;t know if this helps, but hope it does!