Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #32009
    dfwrgjeff
    Participant

    http://1sourceapartments.com/wordpress/

    Would like to hide the “Home” Page title on the entry page – I still want it in the menu.

    #32132
    Tim
    Member

    Take a look at this and see if it is what you’re looking for.

    http://catchthemes.com/support-forum/topic/control-over-page-and-feature-titles/

    Tim

    #32150
    Sakin
    Keymaster

    @dfwrgjeff: It’s just like the @Tim answered. You can just add the following css in “Appearance => Theme Options => Custom CSS” box to hide the page title.
    .page .entry-header { display: none; }

    #32403
    dfwrgjeff
    Participant

    I added that code but it doesnt work for me – does it matter if I have other code in the custom CSS section?

    #32502
    Sakin
    Keymaster

    @dfwrgjeff: Yes, I found issue in your custom css where you miss closing } after your following css.

    #secondary-menu ul.menu {
    list-style: none;
    text-align: left;

    This needs to be like following:

    #secondary-menu ul.menu {
    list-style: none;
    text-align: left;
    }

    Then you can add the code that I gave you.
    .page .entry-header { display: none; }

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to hide page title on Home Page’ is closed to new replies.