EriRob
12-30-2006, 07:10 AM
Hello,
I am starting a website for my flightsimming community and I cannot get the images to show. I have no idea why they don't show although I'm sure I uploaded all of them and linked to them in the correct way. Please visit the page here: www.cajunairva.freehostia.com/fleet.html
How should I edit the code to make these images show?
EriRob
12-30-2006, 04:56 PM
Ok, I understand that the link may not work. Please visit cajunav.co.nr and click on fleet at the top of the page.
headsupp
12-30-2006, 05:19 PM
If the images don't appear in the future I would recommend this step. Visit the url in your browser. Right Click the images and hit properties. The url for you header image is set up as
http://cajunairva.freehostia.com/images/banner.png
you have the image url set up as <img src="images/banner.png">
Try using the absolute url: <img src="http://Yourwebsite.com/images/banner.png">
Hope this helps. :)
EriRob
12-30-2006, 09:44 PM
I actually tried that, but no go. Any more suggestions? This is really perplexing.
Idiotic Creation
12-30-2006, 10:50 PM
Well, I only see one picture that isnt loading, and when I typed in its url there was no picture. Maybe you already fixed your problem?
J to the izzosh
12-30-2006, 11:09 PM
Embedding images in a webpage is a pretty basic science. You use an img tag with a src attribute that contains the image URI. If the image doesn't show up, either there's an error with the URI, or you've forgotten to upload the image. In your case, it seems to be the former. Your images have uppercase extensions (JPG) and you've been typing lowercase extensions (jpg). You'll need to either rename your images or correct the case of the extensions in your URIs. Most servers treat URIs as case-sensitive paths - another one of many possible errors to watch out for. ;)
EriRob
12-31-2006, 01:34 AM
Wow, I didn't notice that at all!! Thank you
J to the izzosh
12-31-2006, 01:46 AM
No problem. The little mistakes are often the hardest to find.