Removing page title

  • Unknown's avatar

    Hi Guys,

    How can I remove the page title from a page? In this case, I’d like to remove the “home” and the “Buy” from this specific page: https://cswilde.com/buy/

    Many, many thanks!

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

  • Unknown's avatar

    Hi, the Home > BUY is actually the breadcrumb navigation that let’s the user know where they are and gives them another way to get back quickly to other pages. You can hide it on the Buy page with the following CSS.

    .page-id-3349 .breadcrumb-list {
        display: none;
    }
  • Unknown's avatar

    Sacredpath, you’re my knight in shining armor. Thank you so much!
    Quick one: since I can’t delete the page title from the “post”, is it possible to at least center it?

  • Unknown's avatar

    Are you talking about on the Buy page or are you wanting to remove the titles from the blog posts?

    If you wish to center the Buy page title, this would do it.

    .page-id-3349 .post-title {
        text-align: center;
    }

    This will center the title on the Buy page only. If you wish to center the page titles on all static pages, then we can remove the page id part on the CSS selector, like this, to do that.

    .post-title {
        text-align: center;
    }

    If you wish to delete the page title on the buy page, it would be this.

    .page-id-3349 .post-title {
        display: none;
    }
  • Unknown's avatar

    You are the best!!! : D
    Thank you so much, Sacredpath!

  • Unknown's avatar
  • The topic ‘Removing page title’ is closed to new replies.