Hi All,
I found some very useful examples here -- http://wordpresstheming.com/2009/11/filter-menus-in-thematic/
Here is the code I added to my functions.php based on one of the examples:
function add_childtheme_news_menu($args) {
$categories = wp_list_categories('echo=0&include=4,11&title_li=<li><a href="#">News</a>&depth=1');
$args .= $categories . '</li>';
return $args;
}
add_filter('wp_list_pages','add_childtheme_news_menu');
function add_childtheme_forms_menu($args) {
$categories = wp_list_categories('echo=0&include=16&title_li=<li><a href="#">Forms</a>&depth=1');
$args .= $categories . '</li>';
return $args;
}
add_filter('wp_list_pages','add_childtheme_forms_menu');
Now I almost have exactly the kind of menu I was looking for.
However, I cannot figure out how to make category tabs "hide" the bottom border when the tabs are active (just like the page tabs do in Thematic menu). I know that border-bottom-color:#fff; in default.css is responsible for this, but it only works for the page tabs and not the category tabs.
Any help will be greatly appreciated.
Thank you.
-sb