• Resolved modernlover

    (@modernlover)


    Hi –

    Blog: materialsandsources.com

    I’m using WP 3.5.1 and Jetpack’s CSS Stylesheet Editor (for now), and I am trying to figure out a simple way to remove the meta info from the bottom of each post on just the homepage, leaving it at the bottom of single posts. All posts are split with “Continue Reading >>>” and it feels silly to leave the meta on the homepage. I will create a child theme later, which is easy enough to do, to include functions, etc.

    Any help is most appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • esmi

    (@esmi)

    footer.entry-meta {
    display:none;
    }
    Thread Starter modernlover

    (@modernlover)

    I appreciate that, but it removes the meta entirely. I want the meta to remain on the single post page, but not on the front page (archive/homepage, whatever you call it).

    esmi

    (@esmi)

    body.blog footer.entry-meta {
    display:none;
    }
    Thread Starter modernlover

    (@modernlover)

    That did it. Thanks, Esmi, you’re a peach.

    esmi

    (@esmi)

    Glad I could help ??

    Thread Starter modernlover

    (@modernlover)

    Ciao!

    Thread Starter modernlover

    (@modernlover)

    Actually, the little popup in the CSS Editor said that even that element bit was “over-qualified”. It said to just use:

    .blog .entry-meta {
    display:none;
    }

    And it works just fine. Thanks again.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to remove the post meta from homepage?’ is closed to new replies.