Hi I want to make banner appear on an iframe player. Something like this: https://i.stack.imgur.com/jTor0.jpg of course with a close button. My html code is like this
<div id="content-embed" style="min-height: 500px;">
<iframe id="iframe-embed" width="100%" height="500px" scrolling="no" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true">
</iframe>
</div>
css
#content-embed {
width: 100%;
position: relative;
}
What I have tried so far (sorry, I'm not master in css and html)
<div id="content-embed" style="min-height: 500px;">
<iframe id="iframe-embed" width="100%" height="500px" scrolling="no" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" style="z-index: 0;">
</iframe>
<div style="z-index: 1;"><img src="/banner.jpg" /></div>
</div>