Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #54311
    Em Cloney
    Member

    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!

    #54374
    Sakin
    Keymaster

    @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; }
    #54382
    Em Cloney
    Member

    The 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/

    #54385
    Sakin
    Keymaster

    @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; }

    #54445
    Em Cloney
    Member

    That worked, thanks so much!

    #54448
    Sakin
    Keymaster

    @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 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Don't want "Home" to Display on Static site’ is closed to new replies.