site: http://solutions.borderstates.com/category/energy-conservation/
I successfully hid the categories and comment count info in the meta data for each post listed in a category, by adding theseĀ rules to my CSS
—————————-
.post-header small.meta-category {
display:none;
}
.post-header small.meta-comment-count {
display:none;
}
———————–
The reason I called them out specifically instead of all the meta is that I do want to keep the author and date meta.
but, because the separating commas live outside of the classes, I am left with 2 random commas still showing.
I’m guessing my new child theme CSS rules were nothing more than amateur hacks and you have a better way to create the end result I want, which is – On archive pages, each post listed should NOT show categories or #of comments, but should show author and date, in the small grey meta data. Without any random commas left over.
Please help, thanks so much