I'm new to blueprint and trying to figure out how to create a primary menu with a delimiter but am not having any luck. I've tried http://drupal.org/node/60341 and a couple of variations but no go.

any suggestions?

thanks!

Comments

biscuit.tech’s picture

solved - I had to do a little digging into the background of the linked solution to get it.

as a side question, if anyone can help me understand what I might be losing with rewriting my nav this way:

<?php print $header; ?>
    <?php if (isset($primary_links)) : ?>
      <?php print blueprint_links($primary_links, array('id' => 'nav', 'class' => 'links primary-links')) ?>
    <?php endif; ?>
    <?php if (isset($secondary_links)) : ?>
      <?php print blueprint_links($secondary_links, array('id' => 'subnav', 'class' => 'links secondary-links')) ?>
    <?php endif; ?>  

taking out this "'links'," part, I'd appreciate the help.

<?php print $header; ?>
    <?php if (isset($primary_links)) : ?>
      <?php print blueprint_links('links',$primary_links, array('id' => 'nav', 'class' => 'links primary-links')) ?>
    <?php endif; ?>
    <?php if (isset($secondary_links)) : ?>
      <?php print blueprint_links('links',$secondary_links, array('id' => 'subnav', 'class' => 'links secondary-links')) ?>
    <?php endif; ?>  

Thanks!

designerbrent’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.