Hi, I am looking for somebody who can create a conditional navigation for wordpress categories. I found something similar, which does the same ,but for it is pages instead. From this site http://www.darrenhoyt.com/2008/02/12/creating-two-tiered-conditional-navigation-in-wordpress/ Code (markup): <ul id="nav"> <?php wp_list_pages('title_li=&depth=1'); ?> </ul> <?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <ul id="subnav"> <?php echo $children; ?> </ul> <?php } else { ?> <?php } ?> Code (markup): I want a similar output, with parent categories above and subcategories on a subnav bar below. Also the sub categories being selected and active once the parent category is selected. Please reply or PM me with your quote.