hi all can i get this pop-up in this websit www.qooy.com and how i can put it in my vBulletin forum plz
Sorry my friend Must have removed the site code My request is popup to open a bit, then closes on its own
When the site opened a small window Emerged and then closed itself How to get one like See Attach Files
Do you mean the full page ads by adbrite? If you want it on your site then just sign up with adbrite and generate an ad code.
to make something appear and then disappear, you'll need a bit of javascript code resembling this: function showPopup(element, duration) { element = document.getElementById(element); element.style.display = 'block'; setTimeout(function() { element.style.display = 'none'; }, duration); } Code (markup): you'll need to call showPopup with the HTML id of the element you want to popup, and the duration in milliseconds you want it to appear. The popup element itself should be have absolute CSS positioning; you can do that in your stylesheet. hth