1
Well, this is my first semi-advanced question, so I think I am learning xoops. :)
I am hand coding a menu w/submenus so I can pick which items to show (instead of showing all modules like the Main Menu). This works fine:
le="color: #000000"><?php <table cellspacing="0"> <tr> <td id="mainmenu"> <a class="menuTop" href="<{$xoops_url}>/">Home</a> <a class="menuMain" href="<{$xoops_url}>/modules/tinycontent/">Company</a> <a class="menuSub" href="<{$xoops_url}>/modules/tinycontent/index.php?id=2">About Us</a> <a class="menuSub" href="<{$xoops_url}>/modules/tinycontent/index.php?id=3">Clients</a> <a class="menuMain" href="<{$xoops_url}>/modules/tinycontent0/">Software</a> </td> </tr> </table>
But when displayed in a Block, the About Us and Clients (submenus) show even when Software (or Home) is clicked. How can I hide About Us and Clients so that they don't show up unless Company is clicked?
thx