-
AuthorPosts
-
July 24, 2014 at 9:36 pm #73305
Hi,
How do I remove the page title at the top of each page AND eliminate the blank white space that would be left behind?
Here’s a sample page: http://nexus.prohealthsites.org/
Thank you!
July 24, 2014 at 9:43 pm #73308Just to clarify, I can do it for pages that are listed under the “Pages” menu be clicking “Disable Page Title” but I don’t know how to do it for pages that aren’t listed in the “Pages” menu.
For example, the blog page (which is the home page for this sample site), or a “categories” page. How do I remove those titles and the blank space?
Thanks again
July 25, 2014 at 10:44 pm #73702Hi Stylinsmitty,
Thanks for writing in!
You can remove the header by putting this code onto the customizer > Custom CSS
.x-header-landmark { display: none; }
Hope that helps! Have a great weekend!
July 26, 2014 at 6:29 am #73752Thanks – worked well!
July 27, 2014 at 4:15 am #74012You’re welcome.
August 1, 2014 at 9:14 am #76449That also removes titles for every other page too. At least in Renew it does. How to remove the title only on the homepage when the blog is the homepage?
August 1, 2014 at 9:48 am #76452I figured it out using css by experimenting:
.blog .x-header-landmark {
display: none;
}August 1, 2014 at 9:49 am #76453.blog .x-header-landmark { display: none; }
August 2, 2014 at 7:37 pm #76907Glad you’ve figured it out Todd.
February 25, 2015 at 12:00 pm #215101Hi,
I just tried doing this same trick on a site using the Integrity stack and it didn’t work. I used this CSS:
.x-header-landmark {
display: none;
}See the site I’m looking at: http://mumby.prohealthsites.org/for-your-family/
Is there something different I have to do to remove the page headings?
ThanksFebruary 25, 2015 at 3:55 pm #215296Hi there,
Thanks for writing in! Your titles are actually entry titles so the above CSS won’t work. Use the following instead. You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.
header.entry-header { display: none; } .entry-content.content { margin-top: -70px; }
Hope this helps – thanks!
February 25, 2015 at 7:20 pm #215426That’s perfect! Thank you
February 25, 2015 at 10:19 pm #215525Sorry – I just found a slight problem.
This code made all of my blog headings disappear too. (i.e. the title of each blog on the blog page is gone. See http://mumby.prohealthsites.org/blog/)
How can I get these back?
THanks!February 26, 2015 at 1:44 am #215624Please change the code to
.single header.entry-header { display: none; } .single .entry-content.content { margin-top: -70px; }
Hope that helps. 🙂
February 26, 2015 at 7:41 am #215757Thanks – it’s not quite the solution I’m looking for though. This code (below) has the following effect:
Pages = Heading shows
Blog Roll = Heading shows
Blog post = No headingI’m looking for…
Pages = No heading
Blog Roll = Heading shows
Blog post = Heading showsCan you help me achieve this?
Thanks.single header.entry-header {
display: none;
}.single .entry-content.content {
margin-top: -70px;
} -
AuthorPosts