"Archived Category" on menu Category page header

  • Unknown's avatar

    Why suddenly I’ve started seeing Archived Category before the Category name in title when clicked from menu? And how to remove that. Tried a few CSS mods which I found on forums but nothing worked. I am using Infoway premium theme.

    If I change theme to something else it doesn’t show “Archived Category” in title and shows only Category name instead.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    Each theme displays category pages differently — the Infoway theme adds “Category Archives” before the category name on category pages. You can see an example on this category page in the Infoway theme demo:

    https://infowaydemo.wordpress.com/category/journey/

    If you’d like to remove that whole title (including the category name) you can use CSS like this:

    .category .heading_wrapper {
      display: none;
    }

    Removing just the “Category Archives” part of the title is a bit trickier, but you can do it with CSS like this to adjust the font sizes for the different parts of the title:

    .category .page-heading h1 {
      font-size: 0;
    }
    
    .category .page-heading h1 span {
      font-size: 24px;
    }

    The first part of that CSS shrinks the title font to 0 so it isn’t visible, and the second part increases just the category name so that part of the title is visible again.

    Please let me know how that goes! :)

  • Unknown's avatar

    Thanks :) worked like magic!!

  • The topic ‘"Archived Category" on menu Category page header’ is closed to new replies.