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:
- The actual blog post page:
- The Main blog post page where a preview of all blog posts is located
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:
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.
Excellent! Thanks for the update!