Remove Title Text after header image

Hi all,

I have a quick issue that should be easy to solve. I would like to remove the Title Text that appears before the body of text on certain pages. What CSS should I use to get this done.

Please note that I am not trying to remove the text that appears over the header images, just the text below it. Have a look hear to understand what I mean. bbbsgreatlakes.org/donate/

I want to Remove the “Donate” Text that appears before the paragraph.

Thanks a lot!

Hi @sebenzaonline,

Use this css code:


#blog .blog-post .blog-post-title {
display:none;
}

Thanks,

Cristian