не получается сделать выпадающий список =( само меню работает, а подменю нет =(
Есть css код меню:
И для этой цели вполне подходит javascript, который разработчики вставили в самый низ файла template.php…
<script type="text/javascript"> $(document).ready(function(){ $('#main_top_menu .menu li').hover( function() { $(this).find('ul:first').show(); $(this).find('a:first').addClass("hover"); }, function() { $(this).find('ul:first').hide(); $(this).find('a:first').removeClass("hover"); } ); }); </script>