admin
Guest
|
 |
« on: February 13, 2008, 03:29: PM » |
|
In the class breadcrumbs.php a call is made to the $trail_string variable.
This variable is defined in the general.php file found in the /includes/modules/sts_inc directory around line 43.
Initially it's set for a bullet ‚ΔΆ , if you do not want the bullet to show do this
sts->template['breadcrumbs'] = $breadcrumb->trail('');
to add spacing between the results breadcrumb links set it like this:
sts->template['breadcrumbs'] = $breadcrumb->trail(' ');
you can even include an image file in between the ' '
|