• Hello.

    I have inserted this code to my child theme to remove page titles, but it has also removed my blog post titles. How would one keep blog title?

    .entry-title {
    	display: none;
    }

    Thank you, great theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there scenecunt,

    How are you doing today?

    If you’re referring to single post pages title then you you should be able to keep those by replacing the code above with the following:

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

    If this is not the case please post link to your site so I can take a look ??

    Cheers,
    Bojan

    try targeting th blog page specifically using this css to turn it back on for just that page

    .blog .entry-title {
        display: block;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove page title, but keep blog post title’ is closed to new replies.