i'm using bootstrap 3 and i want to add a link with a icon on top of a image and vertically center it.
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<div class="col-post">
<div class="post-img"> <a href="#" class="my-icon"></a> <a href="mylink">
<div class="overlay"> <img src="myimage.jpg" alt="#" class="img-responsive"> </div>
</a>
</div>
<!--post-img-->
<div class="post-icons"></div>
</div>
</div>
i want the link with the class my-icon to be on center of the image. my icon is positioned absolute and post-img is positioned relative.
Any help would be much appreciated.