How can I remove the Home link from the content area?
-
Mod
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.)
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
Admin
Try adding this to the Custom CSS option:
.home #header-menu .current-menu-item {
display: none;
}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.
Admin
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.
Admin
There’s also the developer tools in Chrome. Try pressing F12.
Viewing 9 posts - 1 through 9 (of 9 total)
- You must be logged in to reply to this topic.