It is unnecessary and a bit ugly to have the "home" link appear at the top of the content area on the home page. Is it possible to remove or at least change it to say something else without causing the navigation link to disappear or change? thanks.
How can I remove the Home link from the content area?
(9 posts) (3 voices)-
Posted 4 months ago #
-
You can control anything you want in a menu by using a custom menu:
http://blog.kjodle.net/2011/08/25/how-to-create-and-use-custom-menus-in-wordpress/If you just want to make it disappear, add this to custom CSS:
.home #header-menu > li:first-child {display:none;}Keep in mind that if you mess with menus too much, it confuses people. You may just want to style it differently, as a reminder to readers of where they are. (Most themes, including Graphene, do this automatically.)
More helps are available on my blog.
Follow this advice for setting up your blog.
Problems? Questions? Read the forum rules and help us to help you.Posted 4 months ago # -
thank you it is just the home title i want to remove. :)
Posted 4 months ago # -
it is not working. it removed it from the navigation menu, but not the content area.
i tried both:
.home #header-menu li:first-child
{display:none;}.home #header-menu > li:first-child
{display:none;}i also tried this
.home #secondary-menu > li:first-child
{display:none;}might it be a page title assignment?
http://belairmddentist.com/ - i removed the css
Posted 4 months ago # -
Try adding this to the Custom CSS option:
.home #header-menu .current-menu-item { display: none; }Find out how you can support the Graphene theme.
New to the forum? Make sure you read the forum rules.
Like Graphene? Check out Graphene Mobile and Graphene Mobile Neo!Posted 4 months ago # -
no that was not it - it removed home from the menu navigation. i would like the "home" title in the content area for the home page hidden. i believe this may be .page-title ?? It appears in blue above the page content in the center column.
Posted 4 months ago # -
Ah, in that case try this:
.home .post-title { display: none; }FYI, the Firebug add-on for Firefox is super useful for figuring out things like this.
Find out how you can support the Graphene theme.
New to the forum? Make sure you read the forum rules.
Like Graphene? Check out Graphene Mobile and Graphene Mobile Neo!Posted 4 months ago # -
that did it thanks! i use chrome, good to know about FF.
Posted 4 months ago # -
There's also the developer tools in Chrome. Try pressing F12.
Find out how you can support the Graphene theme.
New to the forum? Make sure you read the forum rules.
Like Graphene? Check out Graphene Mobile and Graphene Mobile Neo!Posted 4 months ago #
Topic Closed
This topic has been closed to new replies.
