Im really interested in how templatemonster.com did it, you know when you rollover a template and an image appears or a preview what code did they use to get that affect? thanks alot
<html> <head> <script language="javascript" type="text/javascript"> function show() { document.getElementById("img1").innerHTML = "<img src=\"https://www.google.com/adsense/static/en_GB/images/google_sm.gif\" border=\"0\">"; } function hide() { document.getElementById("img1").innerHTML = "Hidden"; } </script> <title>works gr8</title> </head> <body> <a onMouseOver="show()" onMouseOut="hide();"><div id="img1">Hello</div></a> </body> </html> working nice i guess you need this!