I got tired of looking at mismatched font style of the "Prev / Next" menu at the bottom of the Printable Catalog page. Here's where to change it linking the <TD> to your stylesheet.css.
Modify the file "catalog/templates/content/catalog_products_with_images.tpl.php"
around line #425:
Quote:
Insert around line #425 the RED text . .
<?php
}
?>
<tr>
<td colspan="<?php echo $count_rows; ?>"><?php echo tep_draw_separator(); ?></td>
</tr>
</table></td>
<tr>
<td class="main" colspan="3">
<center>
<?php
if($page != 1)
{
$pageprev = $page - 1;
echo("<a href=\"$PHP_SELF?listing=" . $sort . "&page=$pageprev\">".BOX_CATALOG_PREV."< ;/a>&nbsp;");
} else {
echo(BOX_CATALOG_PREV."&nbsp;"); |
That's All, folks!