You need to put the ad in an absolutely positioned DIV.
HTML:
<div class="full-ad">
<!-- ... Ad goes here ... -->
</div>
CSS:
.full-ad {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* depending on your other code, you may need to set an appropriate a-index as well */
{
solved Full page popup ad via HTML [closed]