Customise display of p-meta categories on blog

Hello,

I would like to be able to display the .p-meta categories on separate lines, without the ", " showing up.

I have set the correct .p-meta child to “display: block” - so each category is now on a single line, but the ", " takes up its own line now, and I cannot find the class to hide it…

Can you tell me how I can hide it at all?

Im using pro, integrity stack. Theme is up to date.

Thanks

Hey @SophiePeirce,

There’s no class to target the comma and please also note that what you described is not the intended design of the Post Meta. I’ll show you how or a trick to hide the comma but please understand that this is theme customization which is outside the scope of our support so it will be your responsibility to maintain and/or enhance the code. Please see our Terms.

What you could do via custom CSS is to make the meta’s color transparent or the same as the background. Since there’s a color assigned for the category links, it won’t be affected. Add this CSS in Theme Options > CSS.

.p-meta span:nth-child(3) {
    color: white;
}

Followed correctly, that should work. See https://youtu.be/kvEcsXgJA9I. If that does not work on your end, you will need to hire a third party developer to make it work in your site.

Thanks.

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