Hide Category info via CSS (preferably)
-
This is a weird one. I use Brunelleschi theme on a couple of sites. I use the same Brunelleschi Child Theme for all of them. On the other ones, I have been able to hide the category footer by adding the CSS code below to the child theme’s style.css page. But it is not working on this new site. EyesOnTheStorm.com Since this site will need categories in the future, I do not want to mess much with the php code. I would prefer to hide the categories via CSS.
On the other sites this has worked:
.cat-links, footer.entry-meta {
display:none;
}
.tag-links, footer.entry-meta {
display:none;
}
.cat-links, footer.post-meta {
display:none;
}
.tag-links, footer.post-meta {
display:none;
}
I have also tried:
.entry-meta .meta-sep, .entry-meta .category { display: none; }
.entry-meta { display:none; }
- The topic ‘Hide Category info via CSS (preferably)’ is closed to new replies.