Hi,
you are using the background image to display the "f" and "@" ?
If yes, you should add some css code.
You can following these steps bellow :
- Change the html code to :
<div class="avatar-social-links">
<a class="facebook" href="#">facebook</a>
<a class="feed" href="#">feed</a>
</div>
- Open the css file, add the code :
.posttext .avatar-social-links a {
display: inline-block;
width: 50px;
height: 50px;
text-decoration: none;
text-indent: -99999em;
}
you can change the width and height to other value that you want
Best regards.
salem