Removing Blog Post dates - Context Theme - Chic

Hi Friends,

I’m trying to find a way to remove the blog date from every page in which it appears in the site. There are 2 main areas where they appear:

  1. The actual blog post page:

  1. The Main blog post page where a preview of all blog posts is located

1 Like

Go to assets/index.css and try adding this code to the bottom of index.css file

.type-heading-meta.meta time {
  display: none;
}

.article__footer {
  display: none;
}

Thank you so much!! That worked.

1 Like

@ahendrick

Excellent! Thanks for the update!