Archived topic
removing metadata from main blog page
3 replies · Started by manaadiar on December 3, 2021
Hi, I am trying to hide metadata from only the Blog Posts page (https://shippingandfreightresource.com/articles) which shows all the blog posts.. I still want the metadata on all other posts.. I found that the postsid for that page is 90902 but it is not working in the css when I tried this
.postid-90902 .entry-meta {
display: none;
}
Pls assist with the css for this..
Hi there,
Try this:
.blog #post-90902 .entry-meta {
display: none;
}
Hi, it worked without the postid.. Thanks..
No problem :)