I do the first steps using drupal, now I ask for some advises how to create the menu-tree.
I would like to have the following

----------------------------------------------------------------------

logo Company

topic1 topic1 topic3 topic4
-----------------------------------------------------------------------
- suptopic1
- suptopci2
- ....

the main-menu should be in the header, a click on topic1 should open a menu on the right side an so on.

Can I use a standard menu block for the main-menu an from there switch to taxonomie menus on the right side, the main menu would hold all the categories createt in taxonomy.

thanks for help in this beginner question

Comments

simon rawson’s picture

I don't know much about Taxonomy Menu Block, but you can make blocks appear wherever you want by selecting the region on admin/blocks.

Without mentioning Taxonomy it is possible to do what you want just using the Primary and Secondary Links Menus. In admin/menu you would populate the Primary Links Menu with your topics and subtopics (nested appropriately). Then you need to make sure that your Secondary Links are drawn from your Primary Links by going to admin/settings/menu (both of the drop downs should say Primary Links).

Now when you select something from your primary links the appropriate subtopics will appear in the secondary links. You can modify your theme to make the menus appear where you want, or even create a block with some custom code like this, to increase flexibility:

<ul id="secondary">
<?php
  $secondary_links = menu_secondary_links();
  foreach ($secondary_links as $link){
    print '<li>'.$link.'</li>';
  }
?>
</ul>

Hope that goes some way to give you an insight into what you want to do.

stoltoguzzi’s picture

sorry for this beginner question, is this approach based on 4.7, I installed this version using the bluemarine theme I can not see secondary links?