CSS to hide page title on blog posts

Hi, what is the CSS syntax to hide “The Blog” page title on the main blog page and the individual posts?

Blog page: http://www.swingeducation.dreamhosters.com/resources/

Individual post: http://www.swingeducation.dreamhosters.com/2018/04/18/2018-3-29-do-you-have-what-it-takes-to-be-a-great-substitute-teacher-take-our-quiz-to-find-out/

I’d still like the spacing there, just the “The Blog” text hidden.

Thanks!

Hello @Web_Services,

Thanks for asking. :slight_smile:

Please add following CSS under X > Theme Options > CSS:

.blog .x-landmark, .single-post .h-landmark  {
    display: none;
}

Thanks.

Perfect, thanks Prasant!