Taking the Title off the Page body and Post body
- The topic ‘Taking the Title off the Page body and Post body’ is closed to new replies.
Need help? Check out our Support site, then
How can I take the title of post or page off the body?
The blog I need help with is: (visible only to logged in users)
Hello,
Use css code given below.
.page-heading {
display: none;
}
Thanks & Regards
Neeraj Agrawal.
thank you
Is there anyway to take the title off of posts too? It definitely works for pages.
Hello,
Use this code.
For home page post title
.content-bar .post .post_title a {
display: none;
}
For post single page
h1.entry-title {
display: none;
}
Thanks & Regards
Neeraj Agrawal.