Hi there, how do I remove/hide metadata (author, date and time, comment, category) from all blog posts?
D
Desmond
Original poster
Member
Hi there, how do I remove/hide metadata (author, date and time, comment, category) from all blog posts?
Hello Desmond,
you need the following CSS to do that
.blog-wrap .meta {
display: none;
}
.blog-post .meta{
display: none;
}
Paste this CSS in Appearance -> Customize -> Additional CSS
Regards
Perfect! Thank you so much Yogendra.