ThemeShaper Forums » Thematic

Exclude category title from archive

(2 posts)
  • Started 1 year ago by rkangeluk
  • Latest reply from ridgely
  • This topic is not resolved

Tags:

  1. rkangeluk
    Member

    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.

    Posted 1 year ago #
  2. 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 #

RSS feed for this topic

Reply

You must log in to post.