• Hi there,

    I was wondering if there is any way to completely remove page titles and the white space in which they appear from under the top menu so that the slider borders directly with the top menu bar?

    Thanks in advance.

Viewing 11 replies - 1 through 11 (of 11 total)
  • I’d like to know also, so I am tagging myself in this thread. Thanks!

    Thread Starter GeoCreo

    (@geocreo)

    Hey jkorhan,

    It just so happens that I’ve found the solution. Get a Custom CSS plugin like Simple Custom CSS and use the following CSS.

    One of these lines is unnecessary, but it’ll definitely work 🙂

    .entry-header { display: none;}
    
    .content-section { padding: 0px; }
    
    .page-title-wrap { display: none;}
    
    @media screen and (min-width: 846px) {
     .content-area, .content-sidebar {
        padding-top: 0px;
     }
    }

    Had the same problem.
    The first line did it for me. Thanks!

    Please beware that the first line alone also removes the blog post titles. A way around is documented here, if you may use.

    If you add below code to your child’s theme style.css it removes the page titles only.

    .page h1.entry-title {
        display: none;
    }
    /*hides the page title*/

    Thanks Hannes. Your solution is simple, elegant and works.

    Hannes, when I use your code, it does remove the page titles but it leaves a white box over my feature image… any suggestions please?

    Thanks, Sx

    ScrumptiousBunsUK, The following rule reduces the whitespace at the top.

    .content-area, .content-sidebar {
        padding-top: 40px;
    }

    @chaitanya:

    ScrumptiousBunsUK does not mean at the top of the page, she means there’s a rectangle of white space on top of the featured image, which normally is a placeholder for the title, that remains, even as the title itself is gone.

    Thoughts?

    I added:

    .page h1.entry-title {
        display: none;
    }

    to my style.css file in my child theme and it did not remove the page title. What gives?

    @scrumptiousbunsuk:
    Sorry can’t help with that, I don’t use featured images on my pages.

    @sourcecodedynamics:
    This code works for me, this code is for page titles only not for post titles …

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Can I remove page titles from all pages?’ is closed to new replies.