Ernold2008-06-30 13:09 | I want to make "color codes" to diffrent product classes. I have on the site: New furniture, Used furniture and II-quality furniture, so I want to mark these groups with somekind of color code. Is it possible ? » Quick.Cart v2.xErnold |
Makaron2008-07-01 09:51 | Ernold try this.. In file templates/menu1.tpl in block "LIST_LIST" after code:
<a href="?p=p_$aList[iCategory]&sName=$aList[sNameUrl]"
paste:
class="l$aList[sStyle]"
so it whole should look like this:
<a href="?p=p_$aList[iCategory]&sName=$aList[sNameUrl]" class="l$aList[sStyle]">
. After that in file templates/default.css paste this kind of lines:
#menu1 dt a.l1{color:red;} lL is the last element. |