There is a menu display function
<script type="text/javascript"> function Menu1(id){ var menu = document.getElementById('menu_' + id).style; menu.display = 'block'; } </script> and there is her challenge when you hover the mouse.
<p class="dropdown_link_active" class="active" onmouseover="javascript:Menu1('<?php echo $category['name']; ?>')" > <?php echo $category['name'] ?> It is necessary that the menu is displayed immediately, and not after mouse hovering. Onload does not work.
class="active visible", where in css:.visible {display: block;}- romeo