category post title

Hi,

Can i change the characteristics of the categories title? I would like to have the same characteristics like the title “about me” that there are on the right sidebar of the demo.

I attached the demo example:

  • POST FORMATS and ABOUT ME can have the same characteristics? Same font and size. Text and line situation on the left. Title without click.

Thank you so much!!!

Hi @mvcc,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

#page .post-inner-content .cat-item:after {
    left: 0;
    width: 60px;
}
#page .post-inner-content .cat-item a {
    font-size: 14px;
    color: #636467;
}
#page .post-inner-content .cat-item {
    display: table;
    margin: 0 auto 15px;
    overflow: hidden;
}

Best Regards,
Movin