I have activated the Poll module, but do not want 'poll' to appear as one of the choices in the navigation menu up top. How do I disable it?

I've also been trying to figure out how to change the capitalization in the navigation menu up top. For example, 'home' is always lowercase, even though I have changed the conf.php file to read

$custom_links = array (
"Home",
"journal",
"articles");"

(i can't get the immediate text above to come out, since the html is interpreted by drupal, but the point is that 'Home' has a capital 'H', and yet still prints with a lower case in the nav bar)

Any ideas?

Comments

kitt’s picture

Check to see if your theme honors the $custom_links variable when displaying the top links. My theme does, and the $custom_links variable works for me.

As for displaying the immediate text, can you use the HTML shortcut of ampersand lt; to get <?

dtannenbaum’s picture

I don't think the thmes I've been playing with (eg. Marvin) do honor $custom_links. Is there a line I can insert that will allow them to?

In Marvin the navigation choices are printed out with

print $this->links(link_page());

Is there something else required?

My other thought was that maybe my conf.php file isn't being read, but that can't be since drupal is using the database i specified in it.

Thanks.