I’m thinking about not using a goto bar at the bottom of my pages:
# show goto bar only once
*MyOldGetGotoBar = *GetGotoBar;
*GetGotoBar = *MyNewGetGotoBar;
my $MyGetGotoBar = 0;
sub MyNewGetGotoBar {
return MyOldGetGotoBar(@_) unless $MyGetGotoBar++;
return '';
}
# get rid of extra break
*MyOldGetFooterLinks = *GetFooterLinks;
*GetFooterLinks = *MyNewGetFooterLinks;
sub MyNewGetFooterLinks {
my $html = MyOldGetFooterLinks(@_);
$html =~ s!<br />!!;
return $html;
}The reason I started thinking about it is a. I hardly use the links in the footer and b. the link to the comments tends to get lost, visually.
What do you think?
Tags: Oddmuse 