By GavinC on
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
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
=-=
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
Kenn, Many thanks
Kenn,
Many thanks
i have got the home page
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?
The easiest thing is probably
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.