Here's what I've commented out so far - this code taken from your categories.php page - for some reason I'm still seeing some sort of a break after the first category image that has a subcategory. Is there an easy way to get rid of that break?
CODE
# if a subcategory, just write out the name in HTML text:
//else if (isset($cPath_array) && in_array($counter, $cPath_array)) {
# if subcategory is the one selected, wrap <b> tags round it:
//$categories_string .= '<b>';
//$categories_string .= $tree[$counter]['name'];
//$categories_string .= '</b>';
//}
# else just write out the name with no bold tags:
//else {
// $categories_string .= $tree[$counter]['name'];
//}
# if a subcategory, close the subNav span tag:
for ($i=0; $i<$tree[$counter]['level']; $i++) {
$categories_string .= "</span>";
}
$categories_string .= '</a><br>';
if ($tree[$counter]['next_id'] != false) {
tep_show_category($tree[$counter]['next_id']);
}
}
?>
QUOTE (jpipitone43 @ Feb 24 2008, 05:06 PM)

Great contribution. I just have a question - I want to get rid of the subcategory text - is there an easy way to do that?
Also, I have some static images that need to be part of the navigation, such as an About Us item, as well as a Contact Us item. Is there an easy way using your contribution to add these static images to the navigation, and have them rollover and display the over state if they're clicked on?
I appreciate any help. This is one of the last things I need to do to complete the site I'm working on.