webguy
Joined: 25 Aug 2004
Posts: 165
Location: Canada
|
Posted: Thu Oct 21, 2004 8:51 pm Post subject: |
|
|
sounds like the html file is looking for the image in a folder but the image is not there.
What you can do to correct this is open the html file in notepad. Look for the image code, it should look something like this:
Quote: | <img src="images/image.jpg"> |
Now you notice where the code says src=" "
That is the location that the browser is looking for the image file. What you need to do is put the image in the same folder as what the html is saying. Or you could alter the html code to look for the image file where it currently is on your computer.
If you could post the html img code, and then tell us what folders the html file is in and the image is in that would really help.
Ideally though, html files should be in one folder, maybe call it "home". And image files should be in a sub folder of the "home" folder, usually you call it "images".
Then when you tell your html file where to look for images you just say something like:
Quote: | <img src="images/myimage.jpg"> |
_________________ Providing small business with high quality affordable websites:
Alberta Custom Websites
Keep up todate with latest virus scares, google, microsoft, linspire and more:
Web and Technology News |
|