Re: Custom theme request
Sure. The navigation is set up like this:
Code:
<div class="listingContainer">
<div class="cats">
<h3 class="forsale">For Sale</h3>
<ul>
<?php wp_list_categories('child_of=1&title_li=&hide_empty=0&depth=1'); ?>
[/list]
<h4 class="viewall">View Everything For Sale</h4>
</div>
</div>
So each category is wrapped within a div class of "listingContainer" and a div class of "cats". You could get away with just wrapping each in a class of "cats" but this second div allowed me to float the menus properly. The h3 has a class so I can use image replacement for the titles (since I am using a non-standard font for the header).
The important part is:
Code:
<ul>
<?php wp_list_categories('child_of=1&title_li=&hide_empty=0&depth=1'); ?>[/list]
This prints out all of the sub-categories within a specified category:
tells wordpress to print all subcategories that are children of a category with the id of '1'. So that number ('1') will change but the rest of the code can stay the same for each list you would like to print.