First of all, thanks for this very nice theme. Unfortunately, I have noticed, that the primary links menu is not high enough, so that the content of this menu is cut.

CommentFileSizeAuthor
#5 pixture-secondary-links-option.gif12.99 KBlevel02
pixture.png40.03 KBbeedaddy

Comments

pixture’s picture

Assigned: Unassigned » pixture
Status: Active » Closed (works as designed)

This theme is designed to display only primary link lines and you will see the result like you did if you choose to display secondary link too. Sorry but this is how this theme is designed.

beedaddy’s picture

Title: Primary links menu is cut » Secondary Links option available but they are not supported
Status: Closed (works as designed) » Active

Oh, what a pitty. :-(
But in this case, it shouldn't be possible to select the secondary links-checkbox in the pixture settings. (And I wonder why the secondary links are part of the CSS file, i.e. they are well rendered.)

lomz’s picture

Will this be changed in the future?

rodrigo21’s picture

A solution for the secondary links problem coul be building a block with them in an place it in the bottom of the main content.

mmm, for this purpose I would like to know how to build a block that doesnt display the header colored bar

level02’s picture

StatusFileSize
new12.99 KB

Or placing them underneath the search box looks nice. Using the dark color from the color set it changes with color module.

To do this move <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php } ?>

to just under print $search_box like this:

    <td id="site_search">
      <?php print $search_box ?>
      <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php } ?>
  </td>

and in style.css change:

#subnavlist {
  padding: 0.5em 1.2em 0.4em 0;
  font-size: 0.8em;
  color: #aaaaaa;
}
#subnavlist a {
  font-weight: bold;
  color: #aaaaaa;
}

to:

#subnavlist {
  padding: 0.5em 1.2em 0.4em 0;
  font-size: 0.8em;
  color: #b21f88;
}
#subnavlist a {
  font-weight: bold;
  color: #b21f88;
}
Jeff Burnz’s picture

Version: 6.x-1.0 » 6.x-1.1
Assigned: pixture » Jeff Burnz

I propose we get rid of secondary links entirely.

Main reasons is the theme does not support them well and the current implementation is rather confusing for new users. Anyone who knows what they are doing can implement secondary links anywhere they want such as level02's suggestion.

As a compromise we could just leave the secondary code block in page.tpl.php and comment out support for them in pixture.info