Having trouble positioning an image (an arrow) within a pop-up window. Attempted relative positioning to move the image precisely, but facing difficulties.
Decided to go with absolute positioning instead, nesting a div within another div as shown below:
<div style="position:relative;top:0px;bottom:500px;left:100px">
<img src="my_image.png" style="position:absolute" height="50" width="100" alt="Arrow pointing to the top right corner of the page" />
</div>
However, the image now only expands the pop-up without actually moving due to it not being relative to the rest of the box.
Any suggestions on how to achieve the desired effect? Am I on the right path here?
Cheers!
Edit: The purpose of this arrow is to indicate the header in the pop-up text ("In the header..."). Open to alternative ideas as well if anyone has a better suggestion :-)