Yes, probably, but how to list the categories as a list below the 'Home'-button?
If I do this:
<?php wp_list_categories('show_option_all=Home&title_li=&exclude=4'); ?>
I get a menu item "Home" reffering to the home-page and I see the categories in the menu, but not "dropping down".
If I do this:
<?php wp_list_categories('show_option_all=&title_li=Test&exclude=4'); ?>
there's an item called "Test" and if I mouse-over there, the categories drop down. Almost perfect, but the item "Test" has a different style then the other buttons (to pages and to the standard Home-link (from my previous post)).
<?php wp_list_categories('show_option_all=Home&title_li=Test&exclude=4'); ?>
is the same, including the "Home" button in the list.
I think I only have to fix the style of "Test", but how? And I prefer "Test" to have a link like "Home" to the home-page..