How do I remove the text i've got circled in blue here?

i’d like to remove it but keep the big white one in the header.

It appears removing one removes the other.

Cheers

Hi @garfoid,

Use this css code:

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

But, keep in mind that this will remove that title from every page that you will create. Unfortunately you could not remove just for one page, the code will affect all pages.

Thanks,

Cristian

You’re my hero. Thank you so much!

You’re welcome. I am glad that I could help you.

Thanks,

Cristian

Just as a follow up. I managed to do this on individual pages with a plugin called
WP Add Custom CSS which allowed me to put the code in on individual pages and not on sitewide!

Thanks!

perfect.