Hello There,
Thank you for the clarifications.
1.) To override the icons, please add the following css code in your child theme’s style.css
.format-standard .entry-title:before {
content: "\f0f6";
}
.format-video .entry-title:before {
content: "\f008";
}
.format-audio .entry-title:before {
content: "\f001";
}
.format-gallery .entry-title:before {
content: "\f083";
}
.format-quote .entry-title:before {
content: "\f10d";
}
.format-image .entry-title:before {
content: "\f083";
}
.format-link .entry-title:before {
content: "\f0c1";
}
This code needs to be added in the child theme 's style.css. It may not work when added in the Theme Options custom css because it does not allow forward slash and backward slash in the css code. The code above is using the default icon settings. You can get the css rule for your custom icons from this site: https://fontawesome.bootstrapcheatsheets.com/
2.) If you want to display certain parts of the meta, you can use the existing css code that you are using. You just add .category-{name} at the beginning of your css code. For example:
.category-{name} .p-meta>span:nth-child(2) {
display: none;
}
or
.category-news .p-meta>span:nth-child(2) {
display: none;
}
Hope this helps.