Hello
I use this code finded on the forum (thanks for all) with the latest stable version Thematic 0.9.7.4
function remove_thematic_actions() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init','remove_thematic_actions');
if ( function_exists( 'add_theme_support' ) ) {
// This theme uses wp_nav_menu()
add_theme_support( 'menus' );
}
function childtheme_menu() { ?>
<div id="access">
<div class="skip-link">">
<?php _e('Skip to content', 'thematic'); ?></div>
<?php wp_nav_menu( 'sort_column=menu_order&container_class=menu&menu_class=sf-menu' ); ?>
</div>
<!-- #access -->
<?php }
add_action('thematic_header','childtheme_menu',9);
All is OK the menu is right ,but my second item is one category and the rest Pages
and this second item dont stay hilight like other
excuse my poor english
and i hope somebody have a solution
infortunately i am working offline for now
thanks
guykayser