WebsiteBaker Support (2.8.x) > Templates, Menus & Design
main menu + sub menu
joycesf:
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 :)
joycesf:
pretty please :)... anyone direct me to the solution? argos or anyone?... thanks :)
kweitzel:
Take a look at the template AllCSS (with drop down) ... it already has this effect.
cheers
Klaus
PurpleEdge:
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
Argos:
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:
--- Code: ---<?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 } ?>
--- End code ---
Navigation
[0] Message Index
[#] Next page
Go to full version