It looks like you're new here. If you want to get involved, click one of these buttons!
//other menu
$nav['other'] = 'Other';
//other subMenu
$nav['other/item1'] = array('label' => 'item1', 'parent_id' => 'other');
$nav['other/item2'] = array('label' => 'item2', 'parent_id' => 'other');
$nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => ''); // click should go nowhere
// item3 submenu
$nav['item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'item3');
$nav['item3/sub2'] = array('label' => 'sub2', 'parent_id' => 'item3');
$nav['item3/sub3'] = array('label' => 'sub3', 'parent_id' => 'item3');
other menu->
item1->
item2->
item3->
sub1->
sub2->
sub3->
Comments
$nav['other'] = array('location' => FALSE, 'label' => 'Other', 'parent_id' => NULL);
Is there any way to get the submenu of item3 to shoot out to the right I listed?
http://www.getfuelcms.com/user_guide/libraries/menu
$nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => ''); or $nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => FALSE);
The link is just text, it does not have any styling.
if I set this:
// item3 submenu $nav['item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'other');
it just stays as a submenu of OTHER not of ITEM3. How do I get item3 to breakout into another dropdown menu after rolling over ITEM3? If I do this as i quoted above:
// item3 submenu $nav['item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'item3');
it ITEM3 stays as a submenu of OTHER. I can't seem to make sub1 of item3 to see item3 as its parent. Mainly curious if it is possible to nest and I can't get it to do that.
//other menu $nav['other'] = 'Other'; //other subMenu $nav['other/item1'] = array('label' => 'item1', 'parent_id' => 'other'); $nav['other/item2'] = array('label' => 'item2', 'parent_id' => 'other'); $nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => ''); // click should go nowhere // item3 submenu $nav['other/item3/sub1'] = array('label' => 'sub1', 'parent_id' => 'other/item3'); $nav['other/item3/sub2'] = array('label' => 'sub2', 'parent_id' => 'other/item3'); $nav['other/item3/sub3'] = array('label' => 'sub3', 'parent_id' => 'other/item3');