Changing Site Name

Permalink
I found out how to change the site name and I did it, saved it and every time I go back to Sitewide Settings the new name is in the site name box but I still have My Site on my site and in the Edit Mode. What now?

 
Mnkras replied on at Permalink Best Answer Reply
Mnkras
http://www.concrete5.org/documentation/how-tos/editors/edit-or-remove-your-site-name/
cainKuri replied on at Permalink Reply
cainKuri
It work for me doing this...

i edit header.php and i found the code :
<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 then i put the code inside a "span" with the name nologo, ending as follow :

<span class="nologo">
<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>
</span>


And then, in the file main.css down below of the #page #header section i add the following code
[code]
#page #header .nologo {display: none;}
/[code]

As someone comment, this is good for crawlers, but it's not visible who have sense. But I'm wondering if someone can do the very same with just CSS or in the "custom CSS" theme options (without messing with the files of the templates, ftp, upload, etc. Like someone said also, this is the first things people want to do when customizing a theme. Should be an easier way.