Quote:
Originally Posted by jaressloo
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.
|
I was laughing at the
Quote:
|
Ok...this is a kind of weird scripting....
|

That was something I found along the way SO when someone clicked on a pic on my blog it opened up to a larger size in another browser...
THANK You for you input, I will resize the images so it will load faster but If I need to tweak it up just a tiny bit I will add the
width="200" height="400" /> part
Thanks again, Good news is I am a fast learner ! So I won't drive this forum too nuts - haha