How could i add drop down menus for the top navigation without losing the look and feel of the current theme? If this is already a feature, how do I enable it? would appreciate any guidance on this.

thanks.

Comments

quiron’s picture

Hey,

I have the same problem and I solved it as following:

  1. in rename urban_solice.info to urbansolice.info (and reenable the theme)
  2. add this linie in urbansolice.info next to the other similar lines:
    regions[top_menu] = Top menu
    
  3. changhe the line 45 of templates/page.tpl.php to this one:
                <?php print render($page['top_menu']); ?>
    
  4. Clear the chache.
  5. download and enable the nice menus module and use it in the new region "Top menu"

If you need more help ask here.
maybe you will need to apply some css to get it nice, this one has worked for me:

ul.nice-menu li {
  margin-top: -31px;
  border: 0px;
}
ul.nice-menu li.menuparent ul {
  margin-top: 21px;
  border: 0px;
}
ul.nice-menu li.menuparent ul li {
  margin-top:0px;
  border: 0px;
}

noizo’s picture

Assigned: Unassigned » noizo

@quiron

I've tried to do by Your manual, and it did not work.
Menu just don't appear.

It would be nice if author will make it by default.

iVaibhav’s picture

I also have the same problem
Authors , Please Help !!!!!!!!
Atleast point us to a right place .........

tanquian’s picture

Component: User interface » Code

There is a block region for superfish menus, however, they will not render on the page when a block is placed in that region. This is because the superfish block region does not appear in page.tpl.php at all.

In page.tpl.php
remove lines:
42 - if ($main_menu || $secondary_menu):
and
49 - endif;

and then change line 45 to
print render($page['superfish_menu']);

now if you place a superfish menu in the superfish menu block region, it should appear
note that you will no longer be able to use the default primary links menu

iVaibhav’s picture

Issue summary: View changes

Thank you !!!