Hello

Im new to drupal and I have started making my first site.

I have created several pages but they have the actual page title displayed at the top of the page. For example page 2, has "Page 2" displayed in grey at the top of the page.

How do I change the title or remove it?

You can see an example here
http://www.free-custom-logo-designs.com/contact

Regards
Sam

Comments

dsoneira’s picture

Have a look at page.tpl.php:

<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>

I guess that's where the system will show your page title (in case you want to remove it everywhere).

You can specify a title of a page, well.. at the field "Title" - the first field when you add a new page:

http://localhost/node/add/page

You can always change the page title by just editing the node (tab on top of the page).

http://localhost/node/5/edit (example)

staino83’s picture

Well I cant believe i didnt see that edit field!

Thanks for the information.....ill have lots more silly questions as I fiddle around with drupal.

Regards
Sam