X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   need to change page navigation text size (https://forum.x-cart.com/showthread.php?t=4006)

CobaltCat 08-15-2003 06:51 PM

need to change page navigation text size
 
I would like to change the text size of the page numbers at the top and bottom of the product thumbnail pages. How would I do this?

Thanks
Dee

rodneyw 08-15-2003 07:15 PM

look in the skin1/customer/main/navigation.tpl file

Since there is no style associated with it, it is using the default style setting in the skin1.css file.

You could either 1) add a new style in the css file and then define the class in the navigation file where you see the following code {%page.index%}...
Code:

{%page.index%}
</td>
{else}
<td width=17 background="{$ImagesDir}/page.gif" align=center>
{%page.index%}


Or you could hardcode the font settings instead of using the skin1.css file like below

Code:

<font size="1">{%page.index%}</font>
</td>
{else}
<td width=17 background="{$ImagesDir}/page.gif" align=center>
<font size="1">{%page.index%}</font>



hope this helps.

CobaltCat 08-15-2003 07:25 PM

Thank you, thank you, thank you!


All times are GMT -8. The time now is 01:19 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.