How to display a page without it's title?

Comments

stephenrobinson’s picture

either copy the page.tpl.php and rename as appropriate and remove the title, or try views and exclude it from the display?

je1’s picture

How do you exclude page title from views? I created view with page nodes, but each page in the view displays it's title.
Thanks,

mcfilms’s picture

Look at this very page in Firebug. You will see the title of the page defined like so:

#content .node h2.node-title, #content h2.title, #content h1.title {
border-bottom:1px solid #7F98A7;
color:#003150;
font-size:1.85em;
font-weight:normal;
line-height:1.2em;
margin:0 0 0.2em;
padding:0 0 0;
text-decoration:none;
}

If you were to change that to:

#content .node h2.node-title, #content h2.title, #content h1.title {
display:none;
}

You have removed the title.

A list of some of the Drupal sites I have designed and/or developed can be viewed at motioncity.com

stephenrobinson’s picture

parallel thread at https://drupal.org/node/116710
S:)