Greetings!
i need a little help.
i have tried to make the font size of my categories smaller. but i cant seem to find where to do that...
i have tried various routes...
i know that the categories are listed via /customer/categories.tpl
Code:
{*
$Id: categories.tpl,v 1.35 2009/05/12 07:37:15 max Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
{capture name=menu}
{if $active_modules.Flyout_Menus}
{include file="modules/Flyout_Menus/categories.tpl"}
{assign var="additional_class" value="menu-fancy-categories-list"}
{else}
<ul>
{foreach from=$categories_menu_list item=c name=categories}
<li{interline name=categories}><a href="home.php?cat={$c.categoryid}" title="{$c.category|escape}">{$c.category}</a></li>
{/foreach}
</ul>
{assign var="additional_class" value="menu-categories-list"}
{/if}
{/capture}
{include file="customer/menu_dialog.tpl" title=$lng.lbl_categories content=$smarty.capture.menu}
but all that does is create an un-numbered list of the categories, there isnt any way to change the font size there.
i can tell from there that i need to be looking at "menu-categories-list"
i have tried to find in my css files where that is, and i thought i had found it, but changing it had no effect...
in main.css
there is this...
Code:
/*==============================================================================
side-bar styles
==============================================================================*/
/*
categories list
*/
.menu-categories-list img.icon {
background: transparent url(images/dingbats_categorie.gif) no-repeat left top;
}
.menu-categories-list ul li {
padding: 4px 0px 5px 20px;
background: transparent url(images/category_bullet.gif) no-repeat 8px 5px;
}
.rtl .menu-categories-list ul li {
padding: 4px 20px 5px 0px;
background: transparent url(images/category_bullet_invert.gif) no-repeat right 5px;
}
.menu-categories-list ul li a:link,
.menu-categories-list ul li a:visited,
.menu-categories-list ul li a:hover,
.menu-categories-list ul li a:active
{
font-size: 12px;
}
i would think that the last line, font-size 12 pixels would be what i am looking for. but when i change it, nothing changes on my customer side...
any help would be appreciated.
thanks.
michael