Hide a specific category posts in the Archives
-
I am a premium customer. I used the following css:
.home .site-content .post.category-hindi {
display: none;
}to hide all the Hindi category posts on my home page for the 2015 theme. I also want to hide them in the date archives page. How should I modify the above css for that? Thanks in advance.
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You could use the .archive class in place of .home in your CSS to achieve what you’re after:
.archive .site-content .post.category-hindi { display: none; }Hope that’s helpful!
- The topic ‘Hide a specific category posts in the Archives’ is closed to new replies.