I tried to use
list-style:none;
everywhere in stylesheet_categories_dressing.css, but the problem remains ...
Printable View
I tried to use
list-style:none;
everywhere in stylesheet_categories_dressing.css, but the problem remains ...
Post a URL link to your site. It's impossible to diagnose without being able to look.
Problem solved by uploading stylesheet_chcategories_dressing.css, thank limelites anyway !
Heyyy, glad you got that sorted, good luck with the next task :-)
I have another problem ... :)
I can add all non-linked "top categories headings" (with categories_dressing_defines.php), but original (linked) headings stay displayed. I can hide all these (linked) top categories, but if I do so, all my non-linked headings disappear too :D
I want non-linked headings, and linked headings not shown.
What do I have to do ? :)
Tim
You can make the non-linked headings belong to the first subcategory in each group, instead of belonging to the top categories. That will let you hide the top cats while still showing the headings.
Thank Glenn, for good idea.
I just made the change as you advised. Unfortunately, I can't eliminate the space (empty row) right over the first top-category (the one with cPath=1) (only with IE). It looks fine with Firefox.
Please, have a look at it: http://www.pacificphm.com/store
Tim
Can anyone please advise me how to change topcat names to linked images in CatTabs. I use cattabs for topcat and sidebar for all subcat. I can't seem to find option to replace image with text
tnx
Categories Dressing applies only to the sidebox, not to the cat-tabs menu. It would be possible to adapt some of the code for your purpose, but that is a subject for another thread.
Tim -
I don't see the problem you describe in IE6; what version are you using?
I do see odd green bands at the bottoms of cat groups, where there is whitespace in Firefox. This might be related to a bug I have found in the code which only shows up with your particular subcat layout: the outermost <li> is not closed. You can fix this by adding </li> to a line in /includes/functions/extra_functions/categories_dressing_functions.php:AddPHP Code:
function cat_ul_manage($current_path, &$prev_cat_depth, $new_group) {
// ... find line 69:
} elseif ($cat_depth < $prev_cat_depth) {//higher
$ul_content .= str_repeat('</li>' . "\n" . '</ul>',($prev_cat_depth - $cat_depth)) . ($new_group?'</li>' . "\n" . '</ul>' . ($cat_depth > 0? '</li>' . "\n" . ' <li>':"\n") . "\n" . '<ul' . $group_id . '>':'') . "\n";
</li>
to change the
$group_id . '>':'') . "\n";
at the end of this line to
$group_id . '>':'</li>') . "\n";