Within my "profile.php" file, I have included a separate "head.php" file that features two images and three labels (two of which contain an additional image).
.parent {
position: relative;
top: 0;
left: 0;
}
.image1 {
position: relative;
top: 0;
left: 0;
}
...
<div class="parent">
<input id="file-upload" type="file" />
<img class="image1 myimg" src="imagesomething1.png" style="width:1050px; height:390px;">
<img class="image2 myimg" src="imagesomething2.png" style="width:150px; height:150px;">
...
</div>
Upon inspecting the code, I notice that even when hovering over the images, the labels remain invisible. How can this issue be resolved?
(P.S. Due to using the same styling for both images, hovering over one image displays both labels, please disregard this behavior for now)