I've got loads of pictures which I want to put on my Web site. I want to present them as thumbnails. When someone clicks on one of them, I want its full size counterpart to open in a separate window. How is that achieved? Obviously, I just want pointers; I don't want anybody to actually provide the code.
You have many ways : You can use a php script witch automatically will resize your image (the image source will be like that thumb.php?width=xx&height=xx but that depends of the script ) A good php script : http://phpthumb.sourceforge.net Another way is photoshop.You can use "Image Processor" to resize all images from a folder.Just go to to File->Scripts->Image Processor and select all options.You can set all thumbs to have a name like 123_thumb.jpg and the original image 123.jpg With a php script is simple to use the name of the original image to generate the name of the thumb and link to that.
is there any dreamweaver extension which can do this ? I am not familiar with scripts and all but I need to perfom the same action using DW8
No, you need a php script or use photoshop to do that.I think there are more applications which can resize more images automatically.