View Full Version : Can some one let me know if my pictures show up on my website?
kathykm23
July 22nd, 2006, 04:40 AM
Can some one check if my pictures are showing up? When I go on my website I can see all my pictures , but when I tried it on 2 other computers none of my pictures came up? What is causing it , a red x is there instead. Is there something I should be doing on my web page? I am just starting out on my website.. still learning.
thanks
rockboy
July 22nd, 2006, 05:00 AM
Welcome to CTH. :wave:
Post a link to the site and we'll take a look.
One thing comes to mind, have you uploaded the images? If you see them when on your own computer but not others, you might be seeing them on your hard drive instead of on your site.
Sinister-wolf
July 22nd, 2006, 05:03 AM
yeah if its a file|c:///file.. isntead of a http://site/file there's your problem right there.
boardernerd228
July 22nd, 2006, 05:08 AM
lol. I know exactly what you are going through. Do you have a ftp site/web hosting? I believe I know what your problem is. This is probably what your html looks like for your picture:
<img src="C:/MyDocuments/MyPictures/image.jpg">
MAKE SURE THAT YOUR PICTURE AND HTML DOCUMENT ARE IN THE SAME FOLDER! Also, make sure that you have specified the correct .jpg image. If you have an ftp site and you have your index.html file in it and the correct picture you are referring to then you do not need the "C:/MyDocuments/MyPictures/" All you need your html to look like is:
<img src="image.jpg"> ONLY IF THEY ARE IN THE SAME FOLDER THOUGHT. IT WON'T WORK IF THE HTML FILE AND IMAGE AREN'T IN THE SAME FOLDER.
I hope this helped. I'm sort of learning html also. If you need some html examples you can "view source" on my website: http://www.duntzboardingco.com and use some of the coding.
Let me know if this works out for you.