View Single Post
  #2  
Old 10-02-2008, 01:28 PM
TiCor Offline
forum loafer
 
Join Date: Sep 2008
Location: Lochristi, Belgium
Posts: 10
Look for this code in all of your xxx_template.html

Code:
<li><a href="index.php" title="Return to Homepage">Home</a></li>
<li><a href="<SITE_BROWSELINK>" title="Browse">Browse</a></li>
<li><a href="index.php?x=about" title="About">About</a></li>
and change it to:

Code:
<li><a href="index.php" title="Return to Homepage">Home</a></li>
<li><a href="<SITE_BROWSELINK>" title="Browse">Gallery</a></li>
<li><a href="index.php?x=about" title="About">About</a></li>
You'll have to change it in all your _templates.
image_template.html, browse_template.html, about_template.html, ...

Hope this will help.
Reply With Quote