
Originally Posted by
mxwebsites
I tried 10 different ways and I keep breaking my site
should be something like this right? I checked that site but that looks more htmlish..this is weird!
I added: font-size:16px;
what am I doing wrong?
$out .= "<a href=\"" . $this->href . $pref . "pg_which=1$this->more_param\" style=\"font-size:16px;color: $this->active_link_color\">". $this->first_text ."</a>\n";
the line you are showing works so it must in another line that you changed. 
try the following:
PHP Code:
$out = "";
if ($offset > 0) {
if ($start > 1) {
$out .= "<a href=\"" . $this->href . $pref . "pg_which=1$this->more_param\" style=\"font-size:16px;color: $this->active_link_color\">". $this->first_text ."</a>\n";
}
$out .= "<a href=\"" . $this->href . $pref . "pg_which=" . ($this->pg_which - 1) . $this->more_param . "\" style=\"font-size:16px;color: $this->active_link_color\">". $this->prev_text ."</a>\n";
}
for ($i = $start; (($i < $length) && ($i < $start + $this->cp_size * $this->pg_size)); $i += $this->pg_size) {
if ($i == $offset) {
$out .= "<font color=\"$this->disable_link_color\"><b>" . ($i / $this->pg_size + 1) . "</b></font>\n";
}
else {
$out .= "<a href=\"" . $this->href . $pref . "pg_which=" . ($i / $this->pg_size + 1) . $this->more_param . "\" style=\"font-size:16px;color: $this->active_link_color\">" . ($i / $this->pg_size + 1) . "</a>\n";
}
}
if ($offset < $length - $this->pg_size) {
$out .= "<a href=\"" . $this->href . $pref . "pg_which=" . ($this->pg_which + 1) . $this->more_param . "\" style=\"font-size:16px;color: $this->active_link_color\">". $this->next_text ."</a>\n";
if ((ceil($length/$this->pg_size) - 1) * $this->pg_size >= $i) {
$out .= "<a href=\"" . $this->href . $pref . "pg_which=" . ceil($length/$this->pg_size) . $this->more_param . "\" style=\"font-size:16px;color: $this->active_link_color\">". $this->last_text ."</a>\n";
}
}
it works for me 
you may want to add a size=\"4\" to the font tag for the current page so that it increases in size. or replace the font tag with something like:
PHP Code:
$out .= "<span style=\"font-weight:600;font-size:16px;color=\"$this->disable_link_color\">" . ($i / $this->pg_size + 1) . "</span>\n";
and maybe add the following to the header.html file just before the </head>:
HTML Code:
<style>
.pagination1{
font-size:16px;
}
</style>
Not sure what dody was thinking when he was writing the code for this section.
He usually gets it right...
.