Consensus Theme and "Home" removal.

Permalink
Ok, I have been searching for days, just when I think I have solved the issue, it fails to work.

My issue is this;

SITE:www.www.thereikiloungeonline.com...

ISSUE: Above "Welcome to The Reiki Lounge" is say "Home"...

I can not get "Home" to go away but STILL have it in the navigation menu.

I have tried the default.php, header.php, main.css, full.php

I'm so stuck I am losing my mind! PLEASE HELP!

thereikilounge
 
ScottSandbakken replied on at Permalink Reply
ScottSandbakken
Go into the page properties and add your title to the Meta Title property.
ScottSandbakken replied on at Permalink Reply
ScottSandbakken
I may have read this too fast, are you trying to change the title or make it say 'Home' in the nav?

You may need to add a custom template to the autonav.
thereikilounge replied on at Permalink Reply
thereikilounge
I want "Home" to disappear from the Home page ONLY. Not the navigation menu.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You have a div in your template thus:
<div id="pagetitle"><h1>
Home</h1></div>

Just delete it...
Or change line 34 of your main.css from this
#wrap #pagetitle {
clear: both;
width: 100%;
height: auto;
padding: 40px 0 0;
}

To This
#wrap #pagetitle {
clear: both;
width: 100%;
height: auto;
padding: 40px 0 0;
visibility: hidden;
}
thereikilounge replied on at Permalink Reply
thereikilounge
Crap....

It didn't change anything....
thereikilounge replied on at Permalink Reply
thereikilounge
Ok.... It must have taken a few to catch up... I see it is gone now. But when I click "About US". "Blog" and "Contact" those are now at the top of those pages as well.

Wouldn't the main.css have addressed all pages, not just "Home"?
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
Apparently not..
Those pages are using declarations on line 42 of your main.css thus
#wrap #pagetitle-right {
    clear: both;
    width: 100%;
    height: auto;
    padding: 40px 0px 0px;
    margin-left: 250px;
}

Just change it to
#wrap #pagetitle-right {
    clear: both;
    width: 100%;
    height: auto;
    padding: 40px 0px 0px;
    margin-left: 250px;
    visibility:hidden;
}

Don't forget to clear the cache!!
thereikilounge replied on at Permalink Reply
thereikilounge
Thank You sooo much!!! May I somehow pay you for the help? I would have been stuck forever.. I may now move on to adding content and if nothing else, need you to know my gratitude for you and your support here.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You have already paid me by thanking me and selecting my answer as "Best Answer",
And you are most welcome anyway..