Hi @headshot2006
You can hide the page title either by modifying your CSS or by modifying the page.php file.
By CSS way you need to modfy the line as shown below in style.ss file in child theme’s folder.
#sub_banner {
text-align: center;
background-color: #26AE90;
box-shadow: 0px -3px 0px rgba(0, 0, 0, 0.1) inset;
min-height: 10px;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
padding-left: 30px;
color: #CCC;
display: none;
}
OR by modifying page.php file.You need to find and remove the below code in page.php file in child theme’s folder.
<div id="sub_banner">
<h1>
<?php the_title(); ?>
</h1>
</div>
Note: Please customize files of child theme, so your changes will not overwrite on theme update.
For child theme Reference here..
Best Regards!!