Blog Titles not showing on page one of blog

On page one of the blog the page titles do not show, I want them to show.
All of the other blog pages show title just not on page one

Hi there,

Please update this code:

.entry-title {
    display: none;
}

to

.single-post .entry-title {
    display: none;
}

That way, the blog post title will only be hidden on the single posts and not on the blog index page.


You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

Hi There,

Please confirm if that work for you.

Thanks

Hi,
I went into customize and global css and did not see
.entry-title {
display: none;
}

Also the titles are showing up on the other blog index pages

Thanks

Hi There,

Thanks for the confirmation!

Please add this CSS to your theme Option -> Global CSS and let us know how this goes.

.entry-title {
display: block !important;
}

Hope this helps!

That fixed it, thank you for helping.

Glad we were able to help :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.