Tagged: blog category, custom.css
Good day! I used a custom CSS argument to hide the blog category on a page with the Blog Posts content element, configured to use the Grid Layout style. Here is the page:
This is the custom CSS:
.blog-categories {
display: none;
}
It worked perfectly on that page! But that argument also hid the category on the main blog page:
http://chooserenaissance.com/blog/
Is there a custom CSS argument that will hide the category on the page without also hiding the category on the main blog page?
Thank you for your help.
Hey AJDesignCo,
Please try this instead, it will only apply to that specific page:
.page-id-38 .blog-categories {
display: none;
}
Best regards,
Rikard
Perfect! And I will tuck that solution away for future situations where I need to limit a CSS change to one page or post. You guys are great. Thanks!