I am attempting to overlay a png image on top of an object element that contains a YouTube video.
See the code snippet below:
<object>
scripts...
</object>
<img src='src' style='position:absolute;top:-10px;z-index:99;'/>
Although the position property is not being applied to the object element, once the embedded video loads, it overlaps the image. Instead of pushing the image down, it simply overlaps it.
Any suggestions for a solution?