Hiding 'Dreamy' template Site name

Permalink
Hey guys, i'm using the 'Dreamy' template and i've a bunch of hacks to get c5 to hide the site name e.g.

editing header.php

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


and editing header.php and main.css and typography.css

in header.php
<h1 id="logo"><span><a href="<?php echo DIR_REL?>/"><?php echo SITE?></a></span></h1>


and and adding span into the CSS files
span {
display: none;
}


:( all these hacks didn't work, any ideas?

 
ScottC replied on at Permalink Reply
ScottC
<?php echo SITE?>

actually is what is echoing the site name out, you remove that the site name will no longer show up :)
chronosoft replied on at Permalink Reply
Hey there scott ;) thanks for the reply. Unfortunately i still can't get the site name hidden away... i edited header.php and deleted '<?php echo SITE?>'. Now it reads

<h1 id="logo"></h1>


still no dice :(