Can you please tell me How To Remove Page Name from the page? It’s very large on the page and not needed.
Cheers!
Hello,
Please change the page template to one that does not show the page title: https://forum.tagdiv.com/page-templates-2/
Thank you!
Hello Bogdan,
I looked at all the page options and none of them create a look I want on the page.
Is there CSS code I can add in to remove page title so that I don’t mess up the look of my page?
Thank you.
Hi,
So you would like tot remove the page title from pages, when the page with title template is selected
– https://www.screencast.com/t/pp6ttajh
That could be done with a code like this
– https://www.screencast.com/t/OefAsAuv
Enter the code in Theme panel->Custom CSS
.page-template-page-pagebuilder-title .td-page-title {
display:none;
}
Thanks
Hi Simion,
Yes I do want to remove the title but… I’m just using the default template setting.
The page title will display on the page even when using then default page template, if the page does not contain any page builder content
– https://www.screencast.com/t/0b7RF0iQNd
– https://www.screencast.com/t/DD9RGciZoZTg
In this case, if you are building pages using no composer elements, this code will remove the page title
– https://www.screencast.com/t/pwAKDU5ro677
.page-template-default .td-page-title {
display:none;
}
Thanks
The page title will display on the page even when using then default page template, if the page does not contain any page builder content
– https://www.screencast.com/t/0b7RF0iQNd
– https://www.screencast.com/t/DD9RGciZoZTg
In this case, if you are building pages using no composer elements, this code will remove the page title
– https://www.screencast.com/t/pwAKDU5ro677
.page-template-default .td-page-title {
display:none;
}
Thanks