Just got back from a business trip...
I'll first give a few pointers on getting the categories sidebox functioning the way you asked for.
You have the image for the layette top cat working ok, but there is a better way to use it.
First you want to hide all of the top cats in the sidebox and have them visible only in the categories-tabs menu in the header. This can be done in your stylesheet by finding this:
Code:
#categories a {
background-repeat: no-repeat;
display: block;
}
A.catBg1 {
background-image: url(../images/catbg1.gif);
height: 46px;
vertical-align: top;
}
and removing the A.catBg1 {} declaration completely and adding
#categories a.category-top-text {
display: none;
}
to get
Code:
#categories a {
background-repeat: no-repeat;
display: block;
}
#categories a.category-top-text {
display: none;
}
Then add headings above the first subcategory in each main category, like the layettes > boy (cPath = 1_6). Find this in your cat dressing copy of tpl_categories.php:
PHP Code:
// categories dressing - add (divider and) heading above a cat
switch ($current_path) {
case '23': //replace number with your desired cPath
//$content .= '<hr class="catBoxDivider" />' . "\n"; // to add divider uncomment this line
$content .= '<span class="catBoxHeading1">' . (file_exists(DIR_WS_TEMPLATE_IMAGES . 'cathead' . $current_path . '.gif') ? zen_image(DIR_WS_TEMPLATE_IMAGES . 'cathead' . $current_path . '.gif') . '</span>':'Heading 1</span>' . $disp_block_head) . "\n";
break;
}
and change to
PHP Code:
// categories dressing - add (divider and) heading above a cat
switch ($current_path) {
case '1_6': //replace number with your desired cPath
$content .= '<span class="catBoxHeading1">' . (file_exists(DIR_WS_TEMPLATE_IMAGES . 'cathead' . $current_path . '.gif') ? zen_image(DIR_WS_TEMPLATE_IMAGES . 'cathead' . $current_path . '.gif') . '</span>':'layettes</span>' . $disp_block_head) . "\n";
break;
}
and rename catbg1.gif to cathead1.gif.
Add a case for the first subcat in each of the other top cats, like 2_13, 3_17, etc. (whatever the actual first subcat cPaths are), and an image named cathead2.gif, cathead3.gif, etc.
I'll look at the other question later - too tired now to think about it.