changing top nav

bettina

Joined: 2002-10-04
Posts: 3
Posted: Fri, 2002-10-04 01:39

Okay.. you know where it has the number of pages in the top nav? I want to be able to add text there on the albums.php page. For example.. i want it to say:

Pages: 1 2 3

What file do I have to edit and where? Thanks.

 
BorgKing
BorgKing's picture

Joined: 2002-09-12
Posts: 314
Posted: Fri, 2002-10-04 18:41

I haven't tested this, but simply looking into the html gallery generates and the php files tells me you have to change /layout/navigator.inc. Go to line 74, it reads:
<!-- BBCode Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font class="pn-sub">Code:</font><HR></TD></TR><TR><TD><FONT class="pn-sub"><PRE>echo "<span class="nav">";</TD></TR></TABLE><!-- BBCode End -->
Change it to:
<!-- BBCode Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font class="pn-sub">Code:</font><HR></TD></TR><TR><TD><FONT class="pn-sub"><PRE>echo "<span class="nav">Pages:"; </TD></TR></TABLE><!-- BBCode End -->

Good luck!

 
bettina

Joined: 2002-10-04
Posts: 3
Posted: Fri, 2002-10-04 20:28

It worked, thank you!