Status: offline

lestat

Forum User
Chatty
Registered: 11/15/03
Posts: 64
Hello,

In which template are the previous & next links located for going from page to page within categories?

Status: offline

Turias

Forum User
Full Member
Registered: 10/20/03
Posts: 807
I believe that's hardcoded in index.php. Look for

Text Formatted Code
 $display .= COM_printPageNavigation($base_url,$page, $num_pages);

 

Status: offline

lestat

Forum User
Chatty
Registered: 11/15/03
Posts: 64
Hi Turias,

Thanks, but I'm looking to change the link color. Where can I do that?

Status: offline

Turias

Forum User
Full Member
Registered: 10/20/03
Posts: 807
in your lib-common.php, in COM_printPageNavigation(), find all 4 lines that look like this:

Text Formatted Code
 $retval .= '<a href="' ............ '</a> ';
 


change them to look like:

Text Formatted Code
 $retval .= '<a class="pagenavlink" href="' ............ '</a> ';
 


Then, just add the pagenavlink class to your style.css file like so:

Text Formatted Code
.pagenavlink
{
    color: #FF0000;
}

 

Status: offline

lestat

Forum User
Chatty
Registered: 11/15/03
Posts: 64
Awesome! Thanks!