I am having an issue with positioning my image under my name on my website. When I try to move the image down, the link no longer works properly. Interestingly, moving the image left or right does not cause any issues. It's only when trying to move it up or down that the problem occurs.
HTML:
<a href="http://steamcommunity.com/id/clarkycalLad/" target="_blank">
<div class="imgtest">
<img src="/images/steam-icon.png" alt="HTML tutorial" style="width:42px;height:42px;border:0;">
</div>
</a>
CSS:
.imgtest {
position: relative;
left: 800px;
top: 100px;
border: 3px solid #73AD21;
}