Gossamer Forum
Home : Products : Links 2.0 : Customization :

Change ":" by ">" in navigation

Quote Reply
Change ":" by ">" in navigation
Hello all!

How to change : by > in top navoigation menu ?

Thanks.
Quote Reply
Re: [carlosca] Change ":" by ">" in navigation In reply to
Towards the bottom of nph-build.cgi, change the red:

sub build_linked_title {
# --------------------------------------------------------
# Returns a string of the current category broken up
# by section, with each part linked to the respective section.
my $input = shift;
my (@dirs, $dir, $output, $path, $last);
@dirs = split (/\//, $input);
$last = &build_clean(pop @dirs);

$output = qq| <A HREF="$build_root_url/">Top</A> :|;
foreach $dir (@dirs) {
$path .= "/$dir";
$dir = &build_clean ($dir);
$output .= qq| <A HREF="$build_root_url$path/">$dir</A> :|;
}
$output .= " $last";

return $output;
}


Leonard
aka PerlFlunkie