Hide Date in "Browse" section
- The topic ‘Hide Date in "Browse" section’ is closed to new replies.
Need help? Check out our Support site, then
Hello,
I’ve having trouble removing the date in the “Header Category Menu”. Also, when you go to the blog post, at the bottom, is there a way to remove the categories, tags, and date from the “next” article?
Site for reference: https://duquesnemba.com/
Thanks!
The blog I need help with is: (visible only to logged in users)
Hi there,
You can remove that date using the following CSS:
.featured-posts .grid-date { display: none; }
To remove the tags, categories, and date you can use the following CSS:
.post-meta { display: none; }
.post-navigation .nav-date { display: none; }
Thank you!