Single Post Titles

Hi. I am using
.single-post .entry-title {
display: none;
}
to generally hide page post titles, preferring to create them in Pro. However, is it possible to override this on a specific post and actually display the post title?

Many thanks

Hi Alex,

Thanks for reaching out.

Yes, it is possible to override the general hide page post titles and display specific post title because every post has a unique ID. The first thing you need to know is to identify the postid of the page you wanted to display your post title. On your specific post page, right-click then click the inspect elements and go to the body tag and you can see the postid. see the example below.

Then your CSS should look like this:

.single-post.postid-1 .entry-title {
display: block;
}

Hope that helps.

Thank you.

Thanks very much. much appreciated.
Great service as always

Hi Alex,

It’s our pleasure to help you.

Thank you.

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