Hi Melody62,
Sure, this is possible. You have to edit the stylesheet to accomplish this.
Go to the dashboard and select appearance > Editor. Now select Stylesheet (style.css). We need to go to section 7.1 (use CTRL+F or CMD+F to find this section).
You should look for a code block that defines .entry-header:before.
/* Post format icons */
.post .entry-header:before,
.entry-footer:before,
.single .title-block:before,
.page .entry-header:before{
background: #faf9f5;
border: 1px solid #d9d6d0;
border-radius: 50%;
box-shadow: 0 0 0 4px #faf9f5;
color: #a09a92;
content: "p";
display: inline-block;
font-family: libretto-icons;
font-size: 21px;
line-height: 21px;
margin: 1rem auto 2rem;
padding: 10px;
text-shadow: none;
}
to disable this content, simply change this code to
/* Post format icons */
.post .entry-header:before,
.entry-footer:before,
.single .title-block:before,
.page .entry-header:before {} /*{
background: #faf9f5;
border: 1px solid #d9d6d0;
border-radius: 50%;
box-shadow: 0 0 0 4px #faf9f5;
color: #a09a92;
content: "p";
display: inline-block;
font-family: libretto-icons;
font-size: 21px;
line-height: 21px;
margin: 1rem auto 2rem;
padding: 10px;
text-shadow: none;
}*/
The {} used here is an empty entry. anything /*’inside’*/ /* … */ is interpreted as a comment, and not code, thus disabling it.
Let me know if this was helpful.
Kind regards,
Thomas