Hello, I need to hide some items in the blog main page and in the single post.
Which custom CSS do I have to use to disable:
- Category link in main blog page
- Navigation button (previous/next) in single post
- Show All link in single post
- Tag and Categories link in single post
Thank you.
                 
                
Comments
to remove all those stuff, please use below css:
.post-meta .category { display: none; }.single-post .post-nav { display: none; }
.single-post .post-meta .category { display: none; }
.single-post .post-meta .category.meta-categories { display: none !important; }