Removal of domain name from header nav bar?

Permalink
How do I remove my domain name from the Header navigation bar. It is taking up all the room and covering my tabs.Thank you

 
frz replied on at Permalink Reply
frz
if this is a fresh install of 5.3.3.1, you can do it easily like this:

http://www.concrete5.org/index.php?cID=23912...


if its an upgrade from earlier, you have to edit the header.php file for your theme.
vebarnid replied on at Permalink Reply
I'm using Earthtones theme and want to edit the header.php to remove the site name from my pages. I don't know how to do this or where to go to find the header.php. Help, please.
Mnkras replied on at Permalink Reply
Mnkras
vebarnid once again read the post above yours
vebarnid replied on at Permalink Reply
Thanks so much for the help?!?! I read that post already and still can't get this to work. Now when I log in it goes to my site but I don't have any of the edit options at the top of my page - i.e. no Edit Page, Dashboard, Etc. I have no idea what I did.
mario replied on at Permalink Reply
mario
hmmm... it sounds like you may have deleted the

Loader::element('header_required');


in your header.php file.

did you do anything with that file?

are you using 5.3.3.1 or an earlier version?

EDIT: btw you usually find the header.php in a folder called elements. If you ftp into the site, look in your root folder under themes-->earthtone (or something like that) -->elements. header.php should be in there.

EDIT 2: the other thing you can consider is to use CSS to make the Site Name itself invisible adding something like

#headerLogo {
display:none;
visibility:hidden;
}

to get rid of it. however, it will still be there in the code and for those browsers who don't support css.