I've been grappling with this for hours: How do I hide a Category title from all or any of the category archives? Either through css or thematic child theme function code. Have been trying the latter, but can't seem to get the syntax right. Any help much appreciated.
ThemeShaper Forums » Thematic
Exclude category title from archive
(2 posts)-
Posted 1 year ago #
-
You can do this with CSS, unless you want to fully remove the category title.
Using CSS, try:/*Category archive title will not be displayed*/ .category h1.page-title { display: none; } /*Specifically, the title for category-x archive will not be displayed*/ .category-x h1.page-title { display: none; }Posted 1 year ago #
Reply
You must log in to post.