Remove title for post

Posted in: Newspaper
Post count: 60

Hi.
If i want to remove the title for a specific post I can do this :

.post-8422 h1 {
display:none;
}

It works – but that will remove all H1 tags in the text. Is there a way to specific address the “entry-title” and remove this with a css. ?

Post count: 20688

Hi,

Indeed, that code will remove any h1 in the whole post page. Try it like this

.post-8422 .td-post-header .entry-title {
display: none;
}

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.