How to remove header

Permalink
Hi,
I'm using the Plain Yogurt theme and would really like to get rid of the header that is automatically added. It just lists the name of the project and links to the home page but i can't remove it using the normal editor. Any help would be appreciated.
Thanks!

 
drbiskit replied on at Permalink Reply
drbiskit
You will need to edit the template file itself...

If not already done - copy the theme directory from:
root/concrete/themes/default

to:
root/themes/default

+ then open up the following file in your text/code editor:
root/themes/default/elements/header.php

and look for the 'h1 logo' element and remove it from the file.

It should look like this:

<h1 id="logo"><!--
--><a href="<?php echo DIR_REL?>/"><?php
$block = Block::getByName('My_Site_Name');
if( $block && $block->bID ) $block->display();
else echo h(SITE);
?></a><!--
--></h1>