By neo_silkroad on
Hello!
We want to replace the text "Home" with an image, at the top of the center column here:
http://www.whatsonchiangmai.com/node/10
... but I can't find it in the code (checked in templates and in the main code base). I even tried
find . -exec grep "Home" {} \;
and could not seem to find it.
Can someone who is familiar let us know where it is?
Thanks!
Comments
breadcrumb
This is the base link of the page breadcrumb.
It is set here:
http://api.drupal.org/api/function/menu_get_active_breadcrumb/5
If you are not using any modules that set the bc, you could just override this theme function:
http://api.drupal.org/api/function/theme_breadcrumb/5
for example, put this in your theme's template.php file:
which just replaces the first item in the bc using the l() function to generate the new image link (obviously put your real img path).
http://api.drupal.org/api/function/l/5
---
Work: BioRAFT