- This topic has 5 replies, 2 voices, and was last updated 9 years, 7 months ago by Sakin.
-
AuthorPosts
-
March 25, 2015 at 11:10 am #54311Em CloneyMember
We’re using the Catch Box theme as a “landing page” of sorts. It will be a one page, static site. So we want to remove the word “Home” that appears in the header.
I don’t have a Primary menu (or any menu) enabled. I’ve tried a million things –css, functions.php edits, but cannot get rid of it! The fixes said to work in the WP forum don’t seem to work for this theme.
I only want to get rid of the word Home, and keep the wide “nav” bar that separates the header from the content. Please help!
March 26, 2015 at 7:46 am #54374SakinKeymaster@Em Cloney: I am bit confused with your question. Can you send me your site URL so that I can check in and get better Idea of what are you trying to do it
1. If you are trying to hide the page title Home then you can just add the following css in “Appearance => Theme Options => Custom CSS” box:
.home .entry-header { display: none; }
2. But if you are trying to hide home from your default page menu, then you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
.menu li { display: none; } .menu li.page_item { display: block; }
March 26, 2015 at 2:17 pm #54382Em CloneyMemberThe 2nd code you sent does hide the word “Home”, but it also removes the wide blue “bar” that separates the header from the content. We like having the bar, but my friend did ask if we could make it a little “thinner”. Can you tell me how to replace it with a thinner bar in that same location?
Thanks! Here’s the url: http://www.homecarejobssandiego.com/
March 26, 2015 at 3:39 pm #54385SakinKeymaster@Em Cloney: Ok to remove the menu completely. You can just go to “Appearance => Menus”, and create a new empty menu and then assign that menu to “Primary Menu” from “Appearance => Menus => Manage Locations”. If you find this complicate then alternatively you can simply add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding #access { display: none; }
Then to add border, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding { border-bottom: 2px solid #1b4266; }
March 27, 2015 at 7:34 am #54445Em CloneyMemberThat worked, thanks so much!
March 27, 2015 at 7:47 am #54448SakinKeymaster@Em Cloney: Thanks and if you like Catch Box Theme then please support it by providing your valuable review and rating at WordPress.org Check here >>. Thanks 🙂
-
AuthorPosts
- The topic ‘Don't want "Home" to Display on Static site’ is closed to new replies.