Hey there,
Looking at your site I think you’re talking about the area CMSHelpLive was targeting.
I originally thought you were talking about the titles on the grid home page as per my earlier screenshot, like this:
https://monosnap.com/image/zezGcrNLgQOLLLs8qI2oQCNkbpnaxX
But now I think you refer :
https://monosnap.com/image/GzamXJWY67OpMqGdMWiPPCmnZuBq48
And if that’s the case then it’s this CSS:
.home #title-container{
display:none;
}
I see that’s a static page set rather than the default grid. If you wanted to edit this out of the template instead of CSS and through a child theme you’d look at page.php, I’d guess you would still want the title on normal pages so you want to use !is_front_page around the title, something like this:
<?php if (!is_front_page()) { ?><div id="title-container"> <h1><?php the_title() ?></h1> </div>
<?php } ?>
Hope this helps.
Take care.