I think that placing an @ after the category (especially without a space) is quite ugly. Took quite a bit of time to dig it up but I found where to change appearance.
Since I like @ Category much better than either Category@ or Category @. I know it is just a small thing to most but can be changed by:
In category.class.php at about line 454 changetoCode:// if related category put @ after its name if (in_array($cat_id, $related)) $cat_name .= "@";If you just want to add a space change $cat_name .= "@"; to $cat_name .= " @";Code:// if related category put @ before its name if (in_array($cat_id, $related)) $cat_name = "@ " . $cat_name;


LinkBack URL
About LinkBacks

