• Resolved sirbrettthomas

    (@sirbrettthomas)


    Anders (or anybody else who might know),

    Is it possible for me to delete (or possibly edit) the page titles as they appear on each individual page? I like the page titles as they currently exist on the main menu, but I was hoping I could somehow erase them from the actual page.

    Let me know.

    Thanks,
    Brett

Viewing 6 replies - 1 through 6 (of 6 total)
  • Rajesh Gupta

    (@rajeshcvani)

    Find the css selector for the page titles using web browser’s inspection tool.

    Declare that selector’s ‘display’ property value to ‘none’

    display:none;

    Theme Author Anders Norén

    (@anlino)

    Hi Brett,

    As I haven’t developed Hemingway Rewritten I’m not sure how the code is structured, but as Rajesh said, a sure-fire way to do it is to set the element in question to display: none; in style.css. You can also add the CSS code in the Jetpack CSS plugin (or another plugin that offers the same functionality).

    Best of luck!

    Hi. I’m trying to do the same thing.

    But when I inspected the code, it was something like “post-title”…. and the only problem is that I think that is the same tag used for the blog post titles (which I don’t want to remove.)

    I just want to remove the page titles. For example, on the Home page.

    Thanks!!! 🙂

    If you want to remove the post-title at home page only, then you can add the body class ‘home’ as in example below:

    .home .post-title {
    display: none;
    }

    This way page titles on homepage will not be displayed. Rest of the pages will show the title.

    Thank you Rajesh.

    I actually had figured out a way to do it before I saw your reply…. a different way (I think I went into the php and removed it from there) but I do appreciate your reply!

    Without going the plugin route how would apply a similar code to remove (not just hide) ALL the page titles (note Posts) and remove the white space left behind? -Thanks!

    ps- having a Post removal option might be handy as well.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘PAGE TITLES (hemingway rewritten)’ is closed to new replies.