Remove Domain Name from Page

Permalink
I'm using one of the Earthtones themes for my pages and I'd like to know how to change the code to remove the domain name from the top of my page. The code looks 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 SITE;
?></a>

What do I need to change to remove the domain name?

I am running 5.3.3.1 but do not have the global scrapbook spoken about in other posts.

Thanks.

 
Mnkras replied on at Permalink Best Answer Reply
Mnkras
<!--
--><a href="<?php echo DIR_REL?>/"><?php
$block = Block::getByName('My_Site_Name');
if( $block && $block->bID ) $block->display();
else echo SITE;
?></a>

remove that
vebarnid replied on at Permalink Reply
Thanks!!

One other question - what if I eventually want to add my company logo to the header - would I still remove that part or would I want to change it to something else to load a logo image?

Thanks for the help!!
vebarnid replied on at Permalink Reply
Anyone have an answer to my question above about putting in logo image instead of Site Name? I removed what was suggested above and it worked great and now I'm thinking about replacing that code with a logo image - what would I need to do in that case?