By 80giga on
Good morning,
All my article are in the form of book and I'm on the theme garland
I want to remove the h1 the title of the site
What page must be changed?
thank you
Good morning,
All my article are in the form of book and I'm on the theme garland
I want to remove the h1 the title of the site
What page must be changed?
thank you
Comments
Theming
The title of the site is outputted via the page.tpl.php of your current theme. To remove it, simply remove the print statement from this file. It is recomended to create a new, custom theme when making alterations such as this, so that whenever you upgrade drupal, you do not overwrite your changes.
Since you are using garland, the easiest way to accomplish what I mentioned above is to copy the garland folder from /themes into /sites/all/themes and rename it to something like garlandmod. Then, inside of this folder, rename garland.info to garlandmod.info. At this point, you have essentially created a new custom theme that you can alter without modifying core. Next, open the page.tpl.php file. Garland is an overcomplicated theme, so there is not a single line which outputs the h1; however, depending on your specific needs, you should be able to get away with completely removing the div with id of logo-floater (lines 24-48). Removing this div should remove the entire h1.
For more information about theming, please see the theme guide (D6).
--
-- matt tucker
pingVision
-- matt tucker