View Single Post
  #3 (permalink)  
Old 02-02-2008, 05:46 PM
BobG's Avatar
BobG BobG is offline
Regular Babbler
 
Join Date: Jan 2008
Location: "Sunny" South Florida
Posts: 41
BobG has a few positive reputation points
Default

Quote:
Originally Posted by jaressloo View Post
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
__________________
I am here to GET the facts BEFORE I Build my Site...Thanks

I am training for TWO 100 mile running events in 2008

MY training/running & other fun stuff blog here

Last edited by BobG; 02-02-2008 at 05:49 PM.
Reply With Quote