[NSFW] Guys Question about this Content Box

Status
Not open for further replies.

Wetpaks

Active Member
1,022
2013
736
775
This box is showing up in the video content of a Wordpress Site
his obviously using Openload as a host and He got this Script or Widget/Plugin (its not a banner ads of openload)
Blocking the Video Content
its also static on the video content it wont follow when you scroll down.
please can anyone tell me about this feature

lZOmjhc.jpg
 
Last edited by a moderator:
6 comments
It's all here.

Code:
<!-- BEGIN FLOATING LAYER CODE //--><div id="showimage" style="position:absolute;width:300px;left:25%;top:400px">


<table border="0" width="300" cellspacing="0" cellpadding="2">
    <tr>
        <td width="100%" style="background-color:transparent" padding:"4px" colspan="2" align="center">


<!-- PUT YOUR CONTENT BETWEEN HERE -->
<a href="#" onClick="hidebox();return false">[x]Close</a>
<!-- BEGIN AD CODE -->
<script type="text/javascript">
var ad_idzone = "1727244",
     ad_width = "300",
     ad_height = "250";
</script>
<script type="text/javascript" src="https://ads.exoclick.com/ads.js"></script>
<noscript><a href="http://main.exoclick.com/img-click.php?idzone=1727244" target="_blank"><img src="https://syndication.exoclick.com/ads-iframe-display.php?idzone=1727244&output=img&type=300x250" width="300" height="250"></a></noscript>
<!-- END AD CODE -->
<a href="#" onClick="hidebox();return false">[x]Close</a>
<!-- END YOUR CONTENT HERE -->




</td>
      </tr>
    </table>
</div>
<!-- END FLOATING LAYER CODE //-->

He's just using Exoclick as the ad company.
 
This might help you..

Code:
<div id="showimage" style="position:absolute;width:300px;left:25%;top:400px">

<table border="0" width="300" cellspacing="0" cellpadding="2">
    <tbody><tr>
        <td width="100%" style="background-color:transparent" padding:"4px"="" colspan="2" align="center">
<a href="#" onclick="hidebox();return false">[x]Close</a>

<!-- BEGIN AD CODE -->
300*250!!
<!-- END AD CODE -->
<a href="#" onclick="hidebox();return false">[x]Close</a>

</td>
      </tr>
    </tbody></table>
</div>

Code:
<script type="text/javascript">

var ns4=document.layers
var ie4=document.all
var ns6=document.getElementById&&!document.all

function hidebox(){
crossobj=ns6? document.getElementById("showimage") : document.all.showimage
if (ie4||ns6)
crossobj.style.visibility="hidden"
else if (ns4)
document.showimage.visibility="hide"
}

</script>
 
[FONT=proxima_nova_rgbold]Thanks Sir maniac its working now i change it a bit thanks[/FONT]
 
Last edited:
Status
Not open for further replies.
Back
Top