• Resolved ChrisHartcom

    (@chrishartcom)


    I can eliminate the post header from pages and posts by using CSS: .post-header { display: none; }
    But that also removes the post header from the home page photos.

    How can I remove the post header from posts and pages but NOT from the masonry photos on the front page?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    If you are looking for CSS then try below custom CSS:
    From posts.

    .single .post-header {
        display: none;
    }

    And from pages.

    .page .post-header {
        display: none;
    }

    Hope this will help you.
    Report if any confusion.

    Regards!!!

    Thread Starter ChrisHartcom

    (@chrishartcom)

    Worked like a charm!

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post-Header display on home but not posts or pages’ is closed to new replies.