Removing icons from post meta

Hello- I found the following CSS in the forum to remove the icons from post meta data:

.p-meta span i {
    display: none;
}

It does not work, maybe because the icon elements have recently changed?
How can I remove the icons from post meta here:
https://devv.rayrolando.com/category/video-teachings-and-qa/

Hello @KimAnn,

Thanks for writing to us.

To help you with your concerns you to add this custom CSS code to the global CSS.

article.post.type-post .p-meta svg {
    display: none;
} 

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

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