Elemin theme: Removing "Category Archive" and "Tag Archive" text

  • Unknown's avatar

    I am running the Elemin theme and would like to remove the words “Category Archive” and “Tag Archive” from the top of the category and tag pages so that the name of the tag or category appears on its own. Anyone know what CSS code I should be adding? I am struggling to isolate the relevant CSS indicators to know where to even start!

    Thank you

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

  • Unknown's avatar

    Hi there!

    Here’s some code to do this:

    .page-title {
    	display: none;
    }

    Let me know if I can help with anything else! :)

  • Unknown's avatar

    Hi Shawna

    Thanks for your reply. Unfortunately that code doesn’t work for what I want as it removes the page title from all of my pages. I only want to remove the words “tag archive” and “category archive” from those specific pages – not from every page. Do you know how I isolate those pages and just edit the code for those?
    Kate

  • Unknown's avatar

    Whoops! Sorry about that. It looks like you got this working correctly though.

    Let me know if I can help further! :)

  • Unknown's avatar

    Hi Shawna

    No – still having the same problem! For example, on this category page:

    http://thebuckwheatadventure.com/category/wheat-free/

    I want it to say “wheat free” rather than “Category Archive: Wheat Free”. Any idea how I delete that wording from the header?

    Many thanks
    Kate

  • Unknown's avatar

    I see what you mean. Unfortunately, there’s no way to split the title there.

    Here’s some code to target the archive pages instead of all page titles. Sorry I didn’t think of that earlier!

    .archive .page-title {
    	display: none;
    }

    Let me know if I can help further!

  • The topic ‘Elemin theme: Removing "Category Archive" and "Tag Archive" text’ is closed to new replies.