I've found lots about hiding Primary Links, but nothing about hiding the actual words Primary Links.

In other words, I want the links to show up, just not the heading "Primary Links". Is there a way to do this? Thanks! (I'm using bluemarine theme)

Comments

francort’s picture

I have no title for my primary menu on the header, for bluemarine in drupal 6.
Maybe you have a block, and in that case you can make the title disapear by css

#block-menu-primary-links h2.title{
    visibility: hidden;
}
Jeff Burnz’s picture

You can go to the block settings and use <none> in the title field.

Should be clarified that francort's CSS solution assumes the $block->subject is printed in an h2 with the class of "title". Not all themes do this.

francort’s picture

Good point
(It was because he said it was Bluemarine, but the most general the better )

Jeff Burnz’s picture

true dude, I missed that re bluemarine, my bad, in too much of a hurry...

solona’s picture

Wonderful!
Thanks, it worked! I didn't know that's what the title field meant.

catchlight’s picture

Thanks Jeff, a really helpful wee tip. As a themer, the less anti-theming (ie: display:none;) we have to do the better.

:)