In various scenarios, you may find it beneficial to remove the default page title from your SharePoint site. BindTuning themes provide you with the flexibility to easily hide page titles, regardless of your SharePoint environment (Modern or Classic) or page type. This article details the procedure for both experiences.
For Modern SharePoint
For Modern SharePoint sites, BindTuning offers a built-in option within the settings panel to quickly hide the page title.
Access Your Site Collection.
On the SharePoint ribbon, click the BindTuning icon to open the settings panel.
βNavigate to the "General" tab.
Enable the option "Hide Page Title."
β
For Classic SharePoint
For Classic SharePoint sites, to remove the page title, edit the theme's CSS file and add the following CSS snippet to the bottom of the file:
/* Custom CSS to remove the page title */
h1.ms-core-pageTitle { display: none !important; }
Important: All master pages (and site collections) will be affected.
If you wish to apply this modification on a site collection basis, see how to add custom styles to your theme and add the same CSS snippet provided above.