Доброй день ! помогите плиз. есть меню: <ul class="joomla-nav"> <li class="item444"><a href="http://23.23.78.129/site3/">Поиск тура</a></li><li class="item479"><a href="/site3/index.php/tyrcija">Витрина туров</a></li><li class="item469"><a href="/site3/index.php/ekskursionnye-tury">Экскурсионные туры</a></li><li class="item468"><a href="/site3/index.php/transfer">Трансфер</a></li><li class="item471"><a href="/site3/index.php/pogoda">Погода</a></li><li class="item472"><a href="/site3/index.php/o-kompanii">О компании</a></li><li class="item473"><a href="/site3/index.php/kontakty">Контакты</a></li></ul> как сделать чтобы когда я перехожу к примерю в меню Трансфер, то оно как активное меню выделялось другим цветом . прилагаю css в атаче. тема шаблона Atomic. учтите что тут Joomla 2.5
Подскажите, как присвоить класс активному ul в стандартном модуле меню. Я его переписал под скрипт аккордеона, но чтобы при переходе по пунктам меню нужный фрагмент был открытым необходимо чтобы HTML код имел вид <ul class="active"><li class="..."> Код модуля Код (html): <ul id="accordion" class="menu<?php echo $class_sfx;?>"<?php $tag = ''; if ($params->get('tag_id')!=NULL) { $tag = $params->get('tag_id').''; echo ' id="'.$tag.'"'; } ?>> <?php foreach ($list as $i => &$item) : $class = 'item-'.$item->id; if ($item->id == $active_id) { $class .= ' current'; } if (in_array($item->id, $path)) { $class .= ' active'; } elseif ($item->type == 'alias') { $aliasToId = $item->params->get('aliasoptions'); if (count($path) > 0 && $aliasToId == $path[count($path)-1]) { $class .= ' active'; } elseif (in_array($aliasToId, $path)) { $class .= ' alias-parent-active'; } } if ($item->deeper) { $class .= ' deeper'; } if ($item->parent) { $class .= ' parent'; } if (!empty($class)) { $class = ' class="'.trim($class) .'"'; } echo '<li'.$class.'>'; // Render the menu item. switch ($item->type) : case 'separator': case 'url': case 'component': require JModuleHelper::getLayoutPath('mod_menu', 'default_'.$item->type); break; default: require JModuleHelper::getLayoutPath('mod_menu', 'default_url'); break; endswitch; // The next item is deeper. if ($item->deeper) { echo '<ul>'; } // The next item is shallower. elseif ($item->shallower) { echo '</li>'; echo str_repeat('</ul></li>', $item->level_diff); } // The next item is on the same level. else { echo '</li>'; } endforeach; ?></ul> Сам тег подменю выводится так: // The next item is deeper. if ($item->deeper) { echo '<ul>'; } Но как прикрепить к нему переменную, которая будет добавлять ему класс в случае если один из его подпунктов открыт?