Viewing 4 replies - 1 through 4 (of 4 total)
  • Do you want to remove the page title from all pages, or just the Home page?

    Thread Starter The Autism Dad

    (@the-autism-dad)

    All of them but it would be nice to know how to remove just the home as well… ?

    It looks like you’re running a minifying plugin, so I can’t tell if you’re got a child theme or are using a custom CSS plugin. Or perhaps the theme has a custom CSS option. In any event, to hide the page titles on all pages, you want to add this CSS rule:

    
    .page .entry-header .entry-title {
       display: none;
    }
    

    If you want to hide it on the home page, use the page ID instead of just the page class:

    
    .page-id-44608 .entry-header .entry-title {
       display: none;
    }
    

    Each page has a unique ID that can be viewed by doing a view source on the page and looking for the <body> tag. The page ID for the home page is 44608.

    Thread Starter The Autism Dad

    (@the-autism-dad)

    thank you so much

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing page title from page’ is closed to new replies.