I want to delete visible dates below blog entries and delete the calendar on the opening page.
The blog I need help with is wisdomartslaboratory.org.
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
I want to delete visible dates below blog entries and delete the calendar on the opening page.
The blog I need help with is wisdomartslaboratory.org.
To hide dates below posts in the Reddle theme, add this to your Appearance → Custom Design → CSS:
.home .widget_calendar {
display: none;
}
article .entry-meta .sep,
article .entry-meta .entry-date {
display: none;
}
To hide the calendar widget just on the home page, add this to your Appearance → Custom Design → CSS:
.home .widget_calendar {
display: none;
}
This topic has been closed to new replies.