Delete the word "HOME"

  • Hi. How do I delete the word “HOME” from my homepage? I want that word to appear in my navigation bar but not on the actual homepage. Thanks.

    The blog I need help with is: (visible only to logged in users)

  • One way I can think of using CSS:

    .home.page  #menu .current_page_item {
        display: none;
    }

    Not entirely ideal, personally, but it can work. :)

  • If you want to keep the “home” in the menu, but remove it from the content area, the following will do that for you. This removes it from the home page only.

    .home .post-title {
        display: none;
    }

    If you want to remove it from all static pages, the following would do that.

    .page .post-title {
    display: none;
    }
  • The topic ‘Delete the word "HOME"’ is closed to new replies.