Html Pictures Not showing.
Author |
Message |
StarGateSG-1
|
Posted: Wed Mar 08, 2006 8:43 am Post subject: Html Pictures Not showing. |
|
|
Hello,
I have a problem with pictures showing on some web pages that me and my class are making.
For some reason some pictures woth correct code, pictures store in the right place, they just don't show up in the web page.
The question is has anyone found anything about pictures just not showing on web pages? |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Tony
|
Posted: Wed Mar 08, 2006 9:27 am Post subject: (No subject) |
|
|
not showing up as completely not there, or a broken image?
Could you upload a zip file with a reprodusable test case? |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
StarGateSG-1
|
|
|
|
|
Amailer
|
Posted: Wed Mar 08, 2006 3:09 pm Post subject: (No subject) |
|
|
Sometimes, the images get corrupted (oddly)- re-dl the image and rename it, see if that works. Happned to me a couple of times. |
|
|
|
|
|
[Gandalf]
|
Posted: Wed Mar 08, 2006 4:38 pm Post subject: (No subject) |
|
|
I noticed that in IE, if you use an image as a link, the link will not work, while in Firefox it does, I have no idea why.
Of course, that may have nothing at all to do with your problem. |
|
|
|
|
|
rdrake
|
Posted: Wed Mar 08, 2006 5:27 pm Post subject: (No subject) |
|
|
Try setting the src of the image to the full path of the image.
code: | <img src="http://www.blah.com/img/image.png" alt="" /> |
The problem is most likely with how you specify your paths. Remember that the following two examples are not the same.
code: | /path/to/image
../path/to/image |
|
|
|
|
|
|
|
|