Do you want to remove a title from specific page of your site using Canvas theme? e.g. About. You can refer below on how to do it
Prerequisite(s)
Canvas theme
Canvas child theme
Step 1 Login to WordPress control panel
Step 2 In case the Permalink settings is not set to default. Go to Settings > Permalinks . We will set it to default so we can get the page ID and use it later in CSS
Step 3 Under Common Settings, tick Default then click Save Changes
Step 4 We will now identify the ID of the page that we like to hide the title. In this case, we will identify the ID of the About page. Go to Pages > About
Step 5 In the Permalink, take note of the line page_id=value. In this case, it is page_id=352
Step 6 Provided that we have already activated the Canvas Child theme, go to Appearance > Editor
Step 7 Enter the following code in the style.css file of the Canvas Child theme. Please take note to update the value of page_id=value to page_id-352.
/*
Theme Name: Canvas Child
Version: 1.0
Description: Child theme for the Canvas theme
Author: Jezweb
Author URI: http://www.jezweb.com.au/
Template: canvas
*/
@import url(“../canvas/style.css”);
.page-id-352 .title {
display: none;
}
note: We are using a Canvas child theme so that your CSS settings will not be changed if there is an update with the main canvas theme.
Step 8 Click Update File. Go to your online site and notice that the About page title is no longer visible.
Here is a video tutorial on how to remove page title from a specific page