Removing page title and text selective pages sela

  • Unknown's avatar

    Hi There,
    I’ve managed to use CSS to remove the page title on this page: https://thesheepthatmooed.com/services/ but now it leaves a blank space/line where the body text would go.
    Is there any way to remove this?
    Thanks
    Amisha

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,
    Loved your site. I’m definitely following it for Digital Marketing insights.
    The space that remains can be reduced with the following CSS:

    @media screen and (min-width: 1180px)
    .front-page-content-area .without-featured-image {
        border-bottom: 1px solid #f2f2f2;
        padding: 0;
    }

    There was a padding before that increased that space. If you still want it to reduce it more and make the line disappear, add the following:

    .entry-content {
        margin: 0;
    }

    Let me know if this works for you.

  • Unknown's avatar

    Thanks Carladoria,
    So glad you like the site and fingers crossed my first blog will be live in the next week or so, with regular posts thereafter.

    Tweaked what you sent me to:

    .front-page-content-area .without-featured-image {
        display: none;
    
    }

    and it worked :)
    Thanks so much!

  • Unknown's avatar

    Great! Glad to it’s now working :)

  • The topic ‘Removing page title and text selective pages sela’ is closed to new replies.