Hey all,

Have come back to Drupal after some time away.

Could someone refresh my memory on how I can remove the title text from a Node?

For example on the My Homepage, it has a large title "Home"

Help is greatly appreciated

Comments

vm’s picture

http://drupal.org/project/auto_nodetitle

or use some conditional php ($is_front I, think) in your node.tpl.php and don't print the title

GavinC’s picture

Kenn,
Many thanks

GavinC’s picture

i have got the home page title to go, but the theme i am using also has a title in the secondary/primary links boxes, is there a way of removing these as well?

Xannax’s picture

The easiest thing is probably to edit your theme and remove the parts you do not want.
Alternatively, if you do not want to edit the theme files, you could check the html path that leads to the theme name in the menu, and then add a display-none in your css.
For example:
#topNav span, #leftNav span{
display:none;
}
Of course, "#topNav span" etc is completely arbitrary, you should see in your own theme how they are named.