Can content be added to category pages and tag archives?

Just wondering if X theme has a way to add some content to tag archives and category pages.

I’m using Integrity theme. I don’t see a way to do this.

If it can’t be done through X interface, could you suggest a plug-in that I could use at my own risk…

Thank you!

Hello @ShermanPotter,

Thanks for writing in!

You can add a custom title and a sub title in the category and tag archive pages. Simply go to Posts > Categories or Post > Tags then edit each of the categories or tags adding a title and the sub titles.

With a little customization, you can add the category or tag description too!

Hope this helps. Please let us know how it goes.

RueNel, thank you! That worked great. I used this link’s instructions:

What I’m wondering is…
Is there any way to apply css styling to the newly added descriptions??
It would be awesome if the text could be a bit bigger and also have a bit more padding around it…

THANK YOU!!!

Hey @ShermanPotter,

You may use the class selector and have something like this:

.cat-desc {
   font-size: 2em;
} 

Hope this helps. Kindly let us know.

Hello and thank you for your response.

I added that to the global CSS section. Is that the correct place?

The text size didn’t change for me.

Thank you

Hi @ShermanPotter,

Please make sure the previous CSS are properly closed, or else, other CSS added after it will not work. Example

@media (max-width:979px){
    .x-nav-wrap.mobile{
        background:#fff;
    }
    .cat-desc{
        font-size:2em;
    }
     

It should be like this

@media (max-width:979px){
    .x-nav-wrap.mobile{
        background:#fff;
    }
} /* a closing for @media() { } */
    .cat-desc{
        font-size:2em;
    }
    

Hope this helps.

thank you Rad!
thanks for explaining about closing css!

that worked great

You’re most welcome!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.