Hiding Post Title

Can’t seem to get the post-title to stop displaying via CSS. Any help is appreciated. I inspected the page and it seems like the following should work, but it doesn’t:

#title.p-name {
display: none;
}

In this example screenshot, the element I’m trying to hide is the larger megaphone emoji title (the title in the nav bar should remain).

Can you post a link to the blog post?

Sure! Thanks, Dino!

https://steveledlow.com/now

Can you try this one?

body#post article h2#title {
    display: none;
}
1 Like

That did the trick! Thanks so much for your CSS magic, as usual, @dino

2 Likes

You are welcome!