есть добрые люди на земле... а то у меня уже паника началась...

с валютой таки да! ПОМОГЛО!СПАСИБО ОГРОМНОЕ)

вот нашла где поставить маркер, в файле ps_product_category.php
кое-как вставила туда этот маркер, но результат тот же, что и на принтскрине...
вот код (наверно я неправильно его размещаю):
// Now show the categories
for($n = 0 ; $n < $nrows ; $n++) {
if( !isset( $row_list[$n] ) || !isset( $category_tmp[$row_list[$n]]["category_child_id"] ) )
continue;
if( $category_id == $category_tmp[$row_list[$n]]["category_child_id"] )
$style = $highlighted_style;
else
$style = "";
$allowed = false;
if( $depth_list[$n] > 0 ) {
// Subcategory!
if( isset( $root ) && in_array( $category_tmp[$row_list[$n]]["category_child_id"], $allowed_subcategories )
|| $category_tmp[$row_list[$n]]["category_parent_id"] == $category_id
|| $category_tmp[$row_list[$n]]["category_parent_id"] == @$categories[$category_id]["category_parent_id"]) {
$allowed = true;
}
}
else
$allowed = true;
$append = "";
if( $allowed ) {
if( $style == $highlighted_style ) {
$append = 'id="active_menu"';
}
if( $depth_list[$n] > 0 ) {
$css_class = "sublevel";
}
else {
$css_class = $links_css_class;
}
$catname = shopMakeHtmlSafe( $category_tmp[$row_list[$n]]["category_name"] );
$html .= '<a title="'.$catname.'" style="display:block;'.$style.'" class="'. $css_class .'" href="'. $sess->url(URL."index.php?page=shop.browse&category_id=".$category_tmp[$row_list[$n]]["category_child_id"]).'" '.$append.'>
<img src="templates/ja_purity/images/arrow.png">'
. str_repeat(" ",$depth_list[$n]). $catname
. ps_product_category::products_in_category( $category_tmp[$row_list[$n]]["category_child_id"] )
.'</a>';
}
}