Remove Page Title Area
I’d like to eliminate the Page Title and Background area. Is there a way to do this sitewide and for specific pages?
Also, I posted a question about child themes and haven’t seen a response.
Do you recommend use of the child theme? If so, should it be installed prior to the one-click import process?
Thanks.
Replies (1)
-
February 8, 2018 at 6:54 pm
I’d like to eliminate the Page Title and Background area. Is there a way to do this sitewide and for specific pages?
Also, I posted a question about child themes and haven’t seen a response.
Do you recommend use of the child theme? If so, should it be installed prior to the one-click import process?
Thanks.
-
February 9, 2018 at 6:22 am
Hi Rich,
For sitewide elimination of Page title area, use the CSS below
#page-title {
display: none;
}Paste this CSS in Appearance -> Customize -> Additional CSS
For, elimination in specific pages, you need to add the class just before the CSS #page-title for eg if the page has class page-id-22 then you need to write down the CSS as
.page-id-22 #page-title {
display: none;
}Or just write down the URL’s of your pages and we will tell you what’s the page id class of that page
Best Regards