Hi Matt,
Can you open this file :
/templates/deals_plazza/html/pagination.php and change the lines 23-29 :
if($page['data']['active']) {
$html .= '<strong>';
}
$html .= $page['data'];
if($page['data']['active']) {
$html .= '</strong>';
}
with this one:
if($page['active']) {
$html .= '<strong>';
}
if($page['active'])
{
$html .= '</strong>';
}