NiceThemesRemove Page Title – NiceThemes http://nicethemeswp.com/forums/topic/remove-page-title/feed/ Mon, 21 Apr 2025 21:37:49 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/remove-page-title/#post-6630 <![CDATA[Remove Page Title]]> http://nicethemeswp.com/forums/topic/remove-page-title/#post-6630 Thu, 17 Dec 2015 21:22:51 +0000 agenta2z I was wondering what code is required to remove the page title that shows up on each page. I tried the css code found on another support question that did not work?

]]>
http://nicethemeswp.com/forums/topic/remove-page-title/#post-6633 <![CDATA[Reply To: Remove Page Title]]> http://nicethemeswp.com/forums/topic/remove-page-title/#post-6633 Thu, 17 Dec 2015 22:07:54 +0000 Juanfra Aldasoro Hi,

Thank you for writing.

You need to look for the class of the title and then apply a display: none; property.

For example, on pages:

.entry-title {
    display: none;
}

Please have in mind that we cannot bring support on customizations: http://nicethemeswp.com/article/support-vs-customizations/

Best,
Juan.

]]>
http://nicethemeswp.com/forums/topic/remove-page-title/#post-6636 <![CDATA[Reply To: Remove Page Title]]> http://nicethemeswp.com/forums/topic/remove-page-title/#post-6636 Thu, 17 Dec 2015 22:26:12 +0000 agenta2z Juan,

Awesome that worked great also how can I remove the the page tag for example “Home / Contact”?

]]>
http://nicethemeswp.com/forums/topic/remove-page-title/#post-6639 <![CDATA[Reply To: Remove Page Title]]> http://nicethemeswp.com/forums/topic/remove-page-title/#post-6639 Fri, 18 Dec 2015 18:58:52 +0000 Juanfra Aldasoro Hi,

Thank you for the follow up.

That section is named breadcrumbs. You can use a CSS snippet like this:

.nice-breadcrumb {
    display:none;
}

Best,
Juan.

]]>