WebsiteBaker Community Forum
WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: joycesf on October 06, 2010, 09:49:12 AM
-
Hi Guys... I need to know how this done... you can see it on the top right sidebar.
main menu and the submenu
http://scholarscanada.com/adults/general-public-seniors/
http://www.itoklantenservicecentrum.nl/wb/pages/actueel.php
thanks in advance
Joyce :)
-
pretty please :)... anyone direct me to the solution? argos or anyone?... thanks :)
-
Take a look at the template AllCSS (with drop down) ... it already has this effect.
cheers
Klaus
-
I think there is an add-in available for Superfish menus available at AMAST - I can't remember if it is a module, or something else?
This looks like a Superfish menu?
Edit: there is a discussion of it here...
https://forum.WebsiteBaker.org/index.php/topic,18520.0.html
-
There are several options to create submenu: multiple showmenus, droplets (showchildren, sitemap, etc), snippets, modules. On the itoklantenservicent rum.nl site I used this snippet:
<?php
// Submenu region, only shown when submenu's are available
ob_start();
show_menu2(0, SM2_ROOT+1, SM2_CURR+2, SM2_ALL|SM2_CURRTREE);
$childmenu=ob_get_contents();
ob_end_clean();
if ($childmenu!="") {
?>
<div id="sidemenu">
<?php show_menu2(0, SM2_ROOT, SM2_MAX, SM2_CRUMB|SM2_CURRTREE,'<h2>[menu_title]</h2>','','','',false,false); ?>
<?php show_menu2(0,SM2_ROOT+1,SM2_CURR+2,SM2_ALL|SM2_CURRTREE); ?>
</div>
<?php } ?>
-
Thank you guys... and Argo... that's the one I am looking for... it works beautifully, thanks :)