Is anyone using Secondary menu?

I just moved something there and don 't see it, but I do get part of a black bar and would like to see one being used to see if I did someth8ng wrong.

Comments

roopletheme’s picture

Works correctly as long as you're not using the suckerfish menu... read the handbook: http://demo.roopletheme.com/litejazz/22-using-primary-links-menu

mrtoner’s picture

Category: support » bug

That would be a great answer, roopletheme, if the OP was asking about the primary menu links. However, he was asking about secondary menu links, which you managed to provide incomplete support for.

To enable secondary links, this line in page.tpl.php:

<div id="secondary" class="clear-block"> <?php print theme('menu_links', $secondary_links); ?> </div>

needs to be changed to

<div id="secondary" class="clear-block"> <?php print theme('menu_tree', menu_tree('secondary-links')); ?> </div>

Marking this as a bug (not that it will ever be fixed).

mrtoner’s picture

Whoops, I was just emulating the primary links code. However, as already pointed out by peterx in #321205: XHTML and CSS not validating, an error there causes an extraneous nested <ul>. This should be

<div id="secondary" class="clear-block"> <?php print menu_tree('secondary-links'); ?> </div>

kisugiai’s picture

Status: Active » Closed (fixed)

try the actual dev version or use the patch from http://drupal.org/node/746972 this patch include the secondary menu issue