• Resolved rtbethel

    (@rtbethel)


    Hi, this is kind of specific for my site but I would like to hide the date from only the one sticky post on my blog. I have made that first square sticky and kind of a logo and don’t want the date to show on that one post. Is this possible? any simple css I can try?

    http://www.goodislandliving.com

    Thanks in advance. I think I can stop bothering you now. Site is complete.

    :)Robbie

Viewing 6 replies - 1 through 6 (of 6 total)
  • Sure! This CSS should target the date on that first post only:

    .post-692 .entry-header .entry-meta {
      display: none;
    }

    Let me know if this does the trick.

    Thread Starter rtbethel

    (@rtbethel)

    That worked perfectly! Thanks. One more thing I noticed… the date and name of the publisher is on the actual post as well. Can I remove it from that one post?

    Ah, I thought you were only referring to the homepage. 🙂

    Try this instead of the above CSS to remove the date and author on both the homepage and the single post:

    .post-692 .entry-header .entry-meta, .postid-692 .entry-meta {
      display: none;
    }
    Thread Starter rtbethel

    (@rtbethel)

    Once again! SO helpful! That was exactly what I needed.

    Thread Starter rtbethel

    (@rtbethel)

    Thanks again for a job SO well done!

    You’re very welcome, glad that did the trick!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing date from sticky posts’ is closed to new replies.