View Single Post
  #4 (permalink)  
Old 01-28-2007, 01:35 PM
Matt's Avatar   
Matt Matt is offline
Learning Programmer
 
Join Date: Jan 2007
Location: Northwestern US
Posts: 47
Credits: 0
Rep Power: 8
Matt is on a distinguished road
Default

Regarding thumbnails:
You may already know this, but an image has height and width properties so you can change it's rendered size on the page. Unfortunately, it takes the same amount of time to load as the larger version, so it may work better for you just to create a resized copy of your original image to have as your thumbnail. Anyway, here is some code...
HTML Code:
<img src="myimage.gif" height="200" width="300">
__________________
http://www.mattnichols.net
Reply With Quote