Hello,
How do I remove or hide the post format link icon that shows in the upper left side of the post?
1 Answers
To remove the post format link icon shows in the upper left side of the post, you can add the following code to the style.css file:
.format-link .item-content a {
padding: 10px 0 10px 0px;
}
.format-link .item-content a:before {
display: none;
}
Hope this helps !
Please login or Register to submit your answer