Black background on "larger images"

liunx

Guest
I've got a "image-gallery" with thumbnails.<br />
As you click on the thumbnails, a larger version of the image is displayed.<br />
Right, now to the problem:<br />
When I click for the larger version of the image, the image is displayed on a white background, which looks quite ugly,<br />
as I use black background as a standard on my site...<br />
<br />
I'd really like to have the images displayed on a black background.<br />
I could ofcourse make a seperate html-page for every image, with the right background... but, -no, I don't think so!...<br />
Maybe I could have a "template-page" which the large image is loaded into as it is displayed?<br />
<br />
-Anyone got some good scripts here?<!--content-->if you mean that you link directly to the picture then yes it will always be a white background, and as you say you would have to do a simple 'template' page which you have the pic in with a black background.<br />
<br />
all the page need consist of is :<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<br />
<html><br />
<head><br />
<title>Some title</title><br />
</head><br />
<br />
<body style="background:#000000;"><br />
<img src=http://www.htmlforums.com/archive/index.php/"foo.html"><br />
<br />
</body><br />
</html><br />
<br />
<br />
/added<br />
<br />
<!-- w --><a class="postlink" href="http://www.hotscripts.com">www.hotscripts.com</a><!-- w --> has plenty of image gallery scripts if your host supports php/perl ;)<!--content-->
 
Back
Top