Hi. I'm hoping to add some CSS so that the dates don't appear on any of my posts.
I'm at: http://jessicahalem.com/
thanks!
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi. I'm hoping to add some CSS so that the dates don't appear on any of my posts.
I'm at: http://jessicahalem.com/
thanks!
Try this:
.entrytitle h3
display:none;
}
Oops - that should be
.entrytitle h3 {
display:none;
}
this worked great!
except for my first post which i've made "sticky"
thoughts?
http://jessicahalem.com
This does it:
body#home .entry-1 .entrytitle h3 {
display:none;
}
This topic has been closed to new replies.