hi, How to enable the dropdow menu like the demo site? just for the primary link menu
i have tried, but i can not find any configuration for this.
Anyone can help me?

Comments

archi’s picture

Hi,

Have you installed nice menus module for drop down ?
If yes then you can go to admin/build/block ,
from there you can enable the block for primary menu (nice menus).

garthee’s picture

Hi,

Regarding the theme demo, < sorry for duplicating >

The top bar is from primary menu, but it is not a dropdown one. The menu in the sidebar (which I added recently) is from secondary menu. I didn’t use any modules, but made the looks of the regions specific to primary menu and secondary menu (they are hardcoded).

Nicemenus is good for creating drop down menus when theme colors and look go along with them as in http://websoic.com (slightly customized Acquia Slate). However with Browny, I wouldn't suggest unless you are ready for theme customization.

leelight’s picture

hi, thx you~~~

i found the solution to active the dropdown menu
open page.tpl.php
and change from

<div id="primary-links">
          <?php print menu_tree($menu_name = 'primary-links'); ?>
        </div>

to

<div id="primary-menu">

          <?php print menu_tree($menu_name = 'primary-links'); ?>
        </div>

all work fine~~~~