Category Heading

When you search by category the heading comes up at the top of the page. Is it possible to centre the category title, make all the letters uppercase and to underline with the theme colour?

Basically have the category the same as on top of blog posts only bigger?

Thank you very much for all your help

Hi @christinam,

Thank you for your another question.

Could you please share me the page URL from your site where it is displaying so that i can help you to achieve it?

Kind Regards,
Movin

I have attached a photo and here is the link Welcome dearpasserby.com - BlueHost.com

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

body.archive.category h1.page-title {
    text-align: center;
    text-transform: uppercase;
    position: relative;
}
body.archive.category h1.page-title:after {
    display: block;
    content: " ";
    background: #27cda5;
    position: absolute;
    bottom: -8px;
    left: 36%;
    height: 4px;
    width: 195px;
}

that works perfectly thanks however it is not displaying the changes on the mobile site

Christina

You have some incorrect code in your theme custom CSS option therefore it is not working.

Please try adding the code in the vary top of the custom CSS option.