Hi,
Is it possible to delete on my theme the image wich is associated with breadcrumbs ? (a class”spLink”)
Cause I’ve got a problem with my fancybox fonction wich takes over on images.
Thanks for your help
Hi,
Is it possible to delete on my theme the image wich is associated with breadcrumbs ? (a class”spLink”)
Cause I’ve got a problem with my fancybox fonction wich takes over on images.
Thanks for your help
yes fancybox is a bit indiscriminate isn’t it…
Go to your Sp theme and locate the spHead.php template.
Find the breadcrumbs template function. If using it as it came then it probably looks like:
sp_BreadCrumbs('tagClass=spLeft spBreadCrumbs&tree=1', __sp('Home'));
Add an argument for the icon on the end of the argument list as in:
sp_BreadCrumbs('tagClass=spLeft spBreadCrumbs&tree=1&icon=', __sp('Home'));
That should do it. As always – we recommend you make your own theme to avoid your changes being overwritten during an update.