I have created a template using Artisteer 2 and wanted to add a Categories drop-down menu item to the hoizontal menu under the header. I have been able to add the Categories menu item just fine, but it is not accepting the formatting of the other menu items (text should be white, not black; hover should be yellow, not gray). The submenu items are formatted correctly though. The other menu item that work correctly are all pages.
How do I get the added menu item to accept the formatting of the other menu items.
Here is the code I used to insert the Categories menu item:
<div class="art-nav">
<div class="l"></div>
<div class="r"></div>
<ul class="art-menu">
<?php art_menu_items(); ?>
<?php wp_list_categories(); ?>
</ul>
</div>
Thanks a lot!