How to display a page without it's title?
either copy the page.tpl.php and rename as appropriate and remove the title, or try views and exclude it from the display?
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,
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
parallel thread at https://drupal.org/node/116710 S:)
Comments
re
either copy the page.tpl.php and rename as appropriate and remove the title, or try views and exclude it from the display?
How do you exclude page title
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,
CSS
Look at this very page in Firebug. You will see the title of the page defined like so:
If you were to change that to:
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
title
parallel thread at https://drupal.org/node/116710
S:)