So, I have an image that is supposed to direct you to a specific URL when clicked. However, the image is currently unclickable and there's a text box below it that cannot be copied. This issue arose after I used CSS to position the image and text box.
Here is the CSS code for the image and text box:
#left{
width:120px;
height:auto;
float:left;
margin-top:10px;
margin-left:150px;
}
And here is the HTML code for both elements:
<div id="left"> <a href="user.php" target="_blank" align="right"><img src="img/acc.png"></a></div>
...
It's puzzling why positioning these elements with CSS would render them unclickable and uncopyable. Any assistance on this matter would be greatly appreciated.