When I have two categories for a post, display looks a bit off

http://www.dailysurprises.co.uk/kitchen-essentials-how-to-multi-purpose-tools-to-save-money

It is an article for both ‘money saving’ category and ‘resource’ category. As you can see at the top of the title. How do I put some spaces and a comma in between the two category names? It is shown as ‘MONEY SAVINGRESOURCE’ at the moment. I want it to show as ‘MONEY SAVING , RESOURCE’

Many thanks

Hi @dailysurprises,

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 -> Additional CSS

.cat-title ul li:after {
    content: ", ";
}

.cat-title ul li:last-child:after {
    content: "";
}

Best Regards,
Movin

Works beautifully! Many thanks :slight_smile:

You are always welcome here :slight_smile: