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:
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 -->
Posts: 314
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!
Posts: 3
It worked, thank you!