akiy,
Open showthread.php and fine the following at about line 146:
Code:
eval("\$pagenav = \"".gettemplate("showthread_numpages")."\";");
$curpage=0;
while ($curpage++<$totalpages) {
if (($curpage<$pagenumber-$pagenavpages or $curpage>$pagenumber+$pagenavpages) and $pagenavpages!=0) {
if ($curpage==1) {
$pagenav.=" <a href=\"showthread.php?threadid=$threadid&pagenumber=$curpage".iif($perpage==$maxposts,"","&perpage=$perpage")."\"><font color=\"#FFFFFF\" class=thtcolor><< First Page</font></a>** ...**";
}
if ($curpage==$totalpages) {
$pagenav.=" ...** <a href=\"showthread.php?threadid=$threadid&pagenumber=$curpage".iif($perpage==$maxposts,"","&perpage=$perpage")."\"><font color=\"#FFFFFF\" class=thtcolor>Last Page >></font></a>**";
}
} else {
if ($curpage==$pagenumber) {
$pagenav.=" <font color=\"#FFFFFF\" class=thtcolor>$curpage</font>**";
} else {
$pagenav.=" <a href=\"showthread.php?threadid=$threadid&pagenumber=$curpage".iif($perpage==$maxposts,"","&perpage=$perpage")."\"><font color=\"#FFFFFF\" class=thtcolor>$curpage</font></a>**";
replace all the instances of <font color=\"#FFFFFF\" class=thtcolor> with your choice of html font.
Cheers,
Bira
Bookmarks