So here's my website: My Website I made this at camp and I was actually satisfied with it so I wanted to put it online. One problem, whenever you expand the page the banner only stays one size. So when you push your window in it goes over the page and when you extend your web browser window to the max the image doesn't cover the whole page. I want it to be so that it expands and shrinks with the page depending on how the viewer has their window stretched. Help would be appreciated.
Hey dear yo have to use the javascript code to use this functionality... Here this is.... <HTML> <HEAD> <TITLE>The Image Gallery</TITLE> <script language="Javascript"> function PopupPic(sPicURL) { window.open( "popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200"); } </script> </HEAD> <BODY bgcolor="#FFFFFF"> <a href="javascriptopupPic('Image1.gif')">Image 1</a><br> <a href="javascriptopupPic('Image2.gif')">Image 2</a><br> <a href="javascriptopupPic('Image3.gif')">Image 3</a><br> </BODY> </HTML>