Ok, I took a look at your HTML. Here's what you have:
<P><img src="http://i118.photobucket.com/albums/o108/rsg83_2006/Running-Fitness-Group.jpg">
<P><P><a try="" href=<img style="cursor: pointer; width: 200px;" alt=""
src="http://i118.photobucket.com/albums/o108/rsg83_2006/Running-Fitness-Group.jpg" border="0" /></a
Ok...this is a kind of weird scripting....
Your first image tag is
<img src="http://i118.photobucket.com/albums/o108/rsg83_2006/Running-Fitness-Group.jpg">
This tells the browser to load the image. Your second tag...
<a try="" href=<img style="cursor: pointer; width: 200px;" alt=""
src="http://i118.photobucket.com/albums/o108/rsg83_2006/Running-Fitness-Group.jpg" border="0" /></a
This is doing nothing. It's not even HTML!!!! So, you can take this whole thing out.
Anyway, if you want to change the image size, you can do something like this
<img src="http://i118.photobucket.com/albums/o108/rsg83_2006/Running-Fitness-Group.jpg" width="200" height="400" />
That will change the image size and will not make it a link. Keep in mind though, that it does not actually change the image size, it only changes the size of how the image is displayed. In other words, you're still loading the same amount of information to your client's browser. If you want to make your load time faster for your pages, you'll actually need to physically resize your image.
|