@miwordi If you want to play around with changing them, this is what I’ve done to remove most of them and put some of them back:
/*Removes icon next to page headings and posts*/
article.page .format-icon:before,
article.format-standard .format-icon:before,
article.format-gallery .format-icon:before,
article.format-chat .format-icon:before,
article.format-audio .format-icon:before,
article.format-video .format-icon:before,
article.format-image .format-icon:before,
article.format-link .format-icon:before {
display: none;
}
article.error404 .format-icon:before,
article.format-quote .format-icon:before {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
content: "\275E";
}
article.format-status .format-icon:before,
article.format-aside .format-icon:before {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
content: "\261D";
}
/* Don't know quite what this does, but it seems to make a difference*/
.entry-summary.format-icon:before,
.entry-content.format-icon:before {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 4em;
top: -15px;
line-height: 0.7;
}
I don’t understand all of it–in particular the interplay between the .entry-summary.format-icon:before, and .entry-content.format-icon:before
and the individual article.format-xxxx .format-icon:before
, but the above works for my current needs.
@rdellconsulting Thanks! ??